Microsoft provides programming examples 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. This article assumes
that you are familiar with the programming language being demonstrated and the
tools used to create and debug procedures. Microsoft support professionals can
help explain the functionality of a particular procedure, but they will not
modify these examples to provide added functionality or construct procedures to
meet your specific needs. If you have limited programming experience, you may
want to contact a Microsoft Certified Partner or the Microsoft fee-based
consulting line at (800) 936-5200. For more information about Microsoft Certified
Partners, please visit the following Microsoft Web site:
For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:
When you use an application method or property that accepts a color
specification value, use a number that represents an RGB color value. An
RGB color value specifies the relative intensity of the red, green, and
blue colors that cause a specific color to be displayed.
The following steps assume that you created a Visual Basic module that
contains the following code
Sub ChangeRGB()
ActiveSheet.Rectangles(1).Select
With Selection.Interior
.Pattern = xlSolid
.Color = RGB([B1].Value, [B2].Value, [B3].Value)
End With
End Sub
and that you created a worksheet that contains the following values:
A1: Red B1: C1: D1:
A2: Green B2: C2: D2:
A3: Blue B3: C3: D3:
A4: B4: C4: D4:
A5: B5: C5: D5:
To use the sample macro, follow these steps:
- On the View menu, point to Toolbars, and then click Drawing.
- On the Drawing toolbar, click the Rectangle tool. Click cell C1 and drag the pointer from cell C1 to cell D5 to draw a rectangle.
- On Sheet1, type the value 65 in cell B1.
- On the Tools menu, point to Macro, and then click Macros. Click ChangeRGB, and then click Run.
Note that the color of the rectangle is dark red.
- Change the value in cell B1 to 64.
- On the Tools menu, point to Macro, and then click Macros. Click ChangeRGB, and then click Run.
Note that the color of the rectangle is black.