Mike asks "How can I modify the background color of a cell using VBA ?"
You have to use the Interior property of cells, and then, you can use either ColorIndex (To use one of the 56 "presets" colors in Excel) or Color, like this
ActiveCell.Interior.ColorIndex = 36
or
Range("A1:A6").Interior.Color = RGB(200,160,35)
By Juan Pablo Gonzalez on 28-Jan-2002
MrExcel.com Consulting can be hired to implement this concept, or many other cool applications, with your data.
MrExcel.com provides examples of Visual Basic procedures for illustration only, without warranty either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose. The Visual Basic procedures on this web site are provided "as is" and we do not guarantee that they can be used in all situations.
|