Is it possible to use images in an Excel IF statement?
- by dunc
Quite a simple one here, but I guess the answer will be a resounding no!
I have a few symbols, basic clip-art, which I'd like to display depending on certain information.
At the moment, I'm using this statement to display Y or N:
=IF(B2>0,VLOOKUP(B2,'Student Data'!$A$2:$L$36,8),"")
It's a simple lookup which checks another worksheet to see if someone has entered "Y" or "N" into the relevant column.
What I'm wondering is this: would it be possible to display these clip-art images (I have them in .PNG format) instead of simple text? I.e. IF VALUE_OF_CELL=7, DISPLAY IMAGE1.
Thanks in advance,