Custom Image to Conditional Formatting

jbartholomew

New Member
Joined
May 29, 2015
Messages
3
I have been asked to add a custom image (a thumbs up) to each cell that has a higher number than the previous one. I already have conditional formatting to shade this cell blue. I can add the standard red, yellow, green lights or arrows, but need help for the custom picture!
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
C
A1 = char(67)
font is windings
this shows a C but believe me it is a thumbs up

<colgroup><col span="4"></colgroup><tbody>
</tbody>
 
Upvote 0
Much to my surprise - YES, you can do it. The character for thumbs-up is in Symbols character set Windings; the function CHAR(67) reports that very symbol. To test it out, put CHAR(67) in any cell and format the cell with font Wingdings and size, I dunno, 24 and you'll get a thumbs-up. here is an example using random numbers. Notice that what you see on this page is just a "C", but in Excel it will be a thumbs-up. Also notice that you can't put the symbol as an icon-set in the cell like you can for Conditional Formatting but it's probably good enough that you can put it beside your data and frame it with a border. You can also read this source: http://blog.contextures.com/archives/2013/09/03/create-your-own-excel-icon-set/


Excel 2012
ABC
1C
2
3datagreater than previous?
41
55C
619C
725C
83 
99C
1014C
117 
125 
1325C
1424 
1514 
16
Sheet23
Cell Formulas
RangeFormula
B1=CHAR(67)
B4=RANDBETWEEN(1,25)
B5=RANDBETWEEN(1,25)
B6=RANDBETWEEN(1,25)
B7=RANDBETWEEN(1,25)
B8=RANDBETWEEN(1,25)
B9=RANDBETWEEN(1,25)
B10=RANDBETWEEN(1,25)
B11=RANDBETWEEN(1,25)
B12=RANDBETWEEN(1,25)
B13=RANDBETWEEN(1,25)
B14=RANDBETWEEN(1,25)
B15=RANDBETWEEN(1,25)
C5=IF(B5>B4,CHAR(67),"")
C6=IF(B6>B5,CHAR(67),"")
C7=IF(B7>B6,CHAR(67),"")
C8=IF(B8>B7,CHAR(67),"")
C9=IF(B9>B8,CHAR(67),"")
C10=IF(B10>B9,CHAR(67),"")
C11=IF(B11>B10,CHAR(67),"")
C12=IF(B12>B11,CHAR(67),"")
C13=IF(B13>B12,CHAR(67),"")
C14=IF(B14>B13,CHAR(67),"")
C15=IF(B15>B14,CHAR(67),"")
 
Upvote 0

Forum statistics

Threads
1,214,886
Messages
6,122,093
Members
449,064
Latest member
Danger_SF

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top