Excel VBA RGB Color
RGB can be also termed as red green and blue, this function is used to get the numerical value of the color value, this function has three components as a named range and they are red, blue and green the other colors are considered as the components of these three different colors in VBA.
In VBA, everything boils down to the coding of each and every piece. For example, if you want to reference some portion of the worksheet, then we can use the RANGE object. If you want to change the font color, then we can make use of the NAME property of the range then write the font name that we needed but imagine a situation of changing the color of the font or background color of the cell for this, we can make use of built-in VB colors like, vbGreen, vbBlue, vbRed, etc.…But we have dedicated function to play around with different colors, i.e., RGB function.
Below is the syntax of the RGB color function.
As you can see above, we can supply three arguments, i.e., Red, Green, and Blue. All these three parameters can accept integer numbers ranging from 0 to 255 only, and the result of this function will be the “Long” data type.
Change Color of Cells using VBA RGB Function
Example #1
For example, we have numbers from cell A1 to A8, as shown in the below image.
For this range of cells, we will try to change the font color to some random color by using the RGB function.
Start the macro procedure first.
Code:
Sub RGB_Example1() End Sub
First, we need to reference the range of cells of fonts we want to change the color of. In this case, our range of cells is A1 to A8, so supply the same by using the RANGE object.
Code:
Sub RGB_Example1() Range ("A1:A8") End Sub
Put dot to see the IntelliSense list of RANGE object. From the IntelliSense list, we are trying to changing the color of the font, and so choose the FONT property from the list.
4.9 (1,353 ratings) 35+ Courses | 120+ Hours | Full Lifetime Access | Certificate of Completion
Code:
Sub RGB_Example1() Range("A1:A8").Font End Sub
Once the FONT property was chosen in this property, we are trying to change the color, so choose the color property of the FONT.
Code:
Sub RGB_Example1() Range("A1:A8").Font.Color End Sub
Put equal sign and open RGB function.
Code:
Sub RGB_Example1() Range("A1:A8").Font.Color = RGB( End Sub
Give random integer numbers ranging from 0 to 255 for all the three arguments of the RGB function.
Code:
Sub RGB_Example1() Range("A1:A8").Font.Color = RGB(300, 300, 300) End Sub
Ok, now run the code and see the result of font colors of the cells from A1 to A8.
Output:
So, the colors of the font changed from black to some other. Color depends on the numbers we give to the RGB function.
Below are RGB color codes to get some of the common colors.
You can just change the integer number combination from 0 to 255 to get the different sorts of colors.
Example #2
For the same range of cells, let’s see how to change the background color of these cells.
First, supply the range of cells by using the RANGE object.
Code:
Sub RGB_Example2() Range ("A1:A8"). End Sub
This time we are changing the background color of the mentioned cells, so we have nothing to do with FONT property now to change the background color, choose the “Interior” property of the RANGE object.
Code:
Sub RGB_Example2() Range("A1:A8").Interior End Sub
Once the “Interior” property is selected, a put dot to see the properties and methods of this “Interior” property.
Code:
Sub RGB_Example2() Range("A1:A8").Interior. End Sub
Since we are changing the interior color of the mentioned cells, choose the “Color” property.
Code:
Sub RGB_Example2() Range("A1:A8").Interior.Color End Sub
To set the interior color property of the range of cells (A1 to A8) out the equal sign and open RGB function.
Code:
Sub RGB_Example2() Range("A1:A8").Interior.Color = RGB( End Sub
Enter the random number as you want.
Code:
Sub RGB_Example2() Range("A1:A8").Interior.Color = RGB(0, 255, 255) End Sub
Run the code and see the background color.
Output:
The background color has been changed.
Things to Remember Here
- RGB stands for Red, Green, and Blue.
- A combination of these three colors will give different colors.
- All these three parameters can accept integer values between 0 to 255 only. Any numbers above this will be reset to 255.
Recommended Articles
This has been a guide to VBA RGB. Here we discuss how to change the color of the interior cell (background, font) in excel VBA by putting different integer numbers in RGB function with examples and a downloadable excel template. Below are some useful excel articles related to VBA-
- 35+ Courses
- 120+ Hours
- Full Lifetime Access
- Certificate of Completion