I have a column containing RGB values, e.g.:
127,187,199 67,22,94
In Excel, is there any way I can use this to set the background colour of the cell?
You can use VBA - something like
Range("A1:A6").Interior.Color = RGB(127,187,199)
Just pass in the cell value.
2.1m questions
2.1m answers
60 comments
57.0k users