I am trying to adjust a cell's color using RGB. I know how to force the color using the RGB in vba but is there a way to do it based on a cells value?
This is the code i am trying to write:
The value of Range("C3") = "(112, 133, 119)" (without the quotes)![]()
Sub test2() Range("B3").Interior.Color = RGB((Range("C3").Value)) End Sub
Bookmarks