Macro to put the RGB number of the fill colour in cells next to that colour

tonywatsonhelp

Well-known Member
Joined
Feb 24, 2014
Messages
3,194
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi Everyone,
I've been setting up a colour sheet in my template document that I think will be quite handy and at the moment I'm manully put the RGB colours next to the fill colour so i can ref it anytime i need to,
However it would be so much better if I could have it auto fill.

So i need a macro that does this:

When I select a cell and fill the colour, whatever colour I choose the RGB is placed in the cells next to it like this (Let say the RGB was 100,50,230)
Offset 1 column = R (100)
Offset 1 column = G (50)
Offset 1 column = B (230)
Offset 1 column = RGB (100,50,230)

please help if you can
Thanks
Tony
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
I don't think there is an event that captures when a cell's colour is changed, the below will give you the RGB for the active cell:
VBA Code:
Sub test()
    Dim rCell As Range
    Dim colorVal As Variant
    Dim RGBcol As Variant
   
    Set rCell = ActiveCell
    colorVal = rCell.Interior.Color
    RGBcol = Split((colorVal Mod 256) & ", " & ((colorVal \ 256) Mod 256) & ", " & (colorVal \ 65536), ",")
   
    rCell.Offset(, 1) = RGBcol(0)
    rCell.Offset(, 2) = RGBcol(1)
    rCell.Offset(, 3) = RGBcol(2)
    rCell.Offset(, 4) = "RGB(" & Join(RGBcol, ",") & ")"
End Sub

Or to apply to a range of cells:
VBA Code:
Sub test()
    Dim rCell As Range
    Dim colorVal As Variant
    Dim RGBcol As Variant
    
    For Each rCell In Range("A2:A10").Cells
        With rCell
            colorVal = .Interior.Color
            RGBcol = Split((colorVal Mod 256) & ", " & ((colorVal \ 256) Mod 256) & ", " & (colorVal \ 65536), ",")
            .Offset(, 1) = RGBcol(0)
            .Offset(, 2) = RGBcol(1)
            .Offset(, 3) = RGBcol(2)
            .Offset(, 4) = "RGB(" & Join(RGBcol, ",") & ")"
        End With
    Next rCell
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,214,808
Messages
6,121,681
Members
449,048
Latest member
81jamesacct

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top