I have a spreadsheet of symbols and matching hex colors. I want to fill the cell itself (or the one next to it) with the hex color within the cell. I've read a bit about "conditional formatting", and I think that's the way to do it, I just don't know how.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Can't be achieved with Conditional Formatting for all colours. Assuming: Row1 contains Data Labels, data set does not have gaps, the HEX colour is for the fill not the font, you have parsed the HEX colour values (numbers, not formulae) into Columns C:E (R,G,B) and that you do not require to do this often, then the ColourCells macro might suit:
and enter the value you want for n when prompted. Sample output and formulae etc:
|
||||
|
|

Range("A1:A6").Interior.Color = RGB(200,160,35). Which means you're also going to have to do the math to convert to RGB or utilize Excel's strange hex approach. – Marc May 5 '12 at 1:56