Google sheets 从公式调用图像

Google sheets 从公式调用图像,google-sheets,formula,Google Sheets,Formula,If语句公式无法根据相邻单元格中的特定文本调用特定图像 这项工作: `=if(istext(A2), image("https://img.labnol.org/di/high-quality- photo.jpg",2),"")` 这不起作用,但却是需要的: `=IF(istext(A2="Van", image("https://img.labnol.org/di/high-quality-photo.jpg",2),IF(A2="Bike", image("ht

If语句公式无法根据相邻单元格中的特定文本调用特定图像

这项工作:

    `=if(istext(A2), image("https://img.labnol.org/di/high-quality-  photo.jpg",2),"")`
这不起作用,但却是需要的:

        `=IF(istext(A2="Van", image("https://img.labnol.org/di/high-quality-photo.jpg",2),IF(A2="Bike", image("https://isome other image from the library",2),""))`

istext(A2=“Van”
更改为
=if(find(“Van”),A3)>0,图像(“https://img.labnol.org/di/high-quality-photo.jpg“,2),”)

请查看此电子表格以从上面构建: