RGB colors with Their respective values in one sheet macro

witsonjoyet

Board Regular
Joined
Sep 13, 2013
Messages
100
Hi,
Good Day,
Could anyone write a macro to show the all RGB colours (1.6 million) in one single sheet with a RGB number. I.e. if i place the cursor in a cell then it needs to show/pop-up the RGB value of a particular cell, like wise i need to show the entire 1.6 million RGB colours in one sheet (if possible).
Thanks in advance.
 
i need to show the entire 1.6 million RGB colours in one sheet (if possible).
it is NOT possible in one sheet - requires 250 sheets

some how i need to show the color variances too

To show a variance requires 2 colours
- do you want to show a variance between colours in 2 cells ?
- how should the value of the variance be returned ?
 
Upvote 0

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
This will give you the color of the active cell.
VBA Code:
Sub RGB_Peek()

'    Shift + Ctrl + Z
'    Paul Pfau 2019

     InteriorColor_ = ActiveCell.Interior.Color
     
          Red_ = InteriorColor_ And 255
          Green_ = InteriorColor_ \ 256 And 255
          Blue_ = InteriorColor_ \ 256 ^ 2 And 255
     
     Answer_ = "RGB = " & Red_ & " " & Green_ & " " & Blue_ & vbCrLf & "Interior Color = " & InteriorColor_
     
     MsgBox Answer_

End Sub
 
Upvote 0
This code will give you 512 of the colors.

VBA Code:
Sub RGB_512()

Application.ScreenUpdating = False

Dim Add_ As Long
Dim Step_ As Long
Dim Square_ As Long

Dim InteriorColor_ As Long

Dim Red_ As Long
Dim Green_ As Long
Dim Blue_ As Long

Dim RedDark_ As Long
Dim GreenDark_ As Long
Dim BlueDark_ As Long

Dim RedLight_ As Long
Dim GreenLight_ As Long
Dim BlueLight_ As Long

Dim RedBorder_ As Long
Dim GreenBorder_ As Long
Dim BlueBorder_ As Long

Sheets("Color Chart").Select

'Red_ = 200: Green_ = 200: Blue_ = 200: Add_ = 50: Step_ = 10: Square_ = 6 * -6     '    216 light
Red_ = 180: Green_ = 180: Blue_ = 180: Add_ = 70: Step_ = 10: Square_ = 8 * -8     '    512 Light
'Red_ = 100:Green_ = 100:Blue_ = 100:Add_ = 140:Step_ = 20:Square_ = 8 * -8     '    512 Medium
'Red_ = 0: Green_ = 0: Blue_ = 0: Add_ = 256: Step_ = 64: Square_ = 5 * -5     '    125 All

'    Start set
RedDark_ = Red_
GreenDark_ = Green_
BlueDark_ = Blue_

'    End set
RedLight_ = Red_ + Add_
GreenLight_ = Green_ + Add_
BlueLight_ = Blue_ + Add_

Cells(1, 1).Select

     For Red_ = RedDark_ To RedLight_ Step Step_
     For Green_ = GreenDark_ To GreenLight_ Step Step_
     For Blue_ = BlueDark_ To BlueLight_ Step Step_
     
          RedBorder_ = Red_ - 20: If RedBorder_ < 0 Then RedBorder_ = 0
          GreenBorder_ = Green_ - 20: If GreenBorder_ < 0 Then GreenBorder_ = 0
          BlueBorder_ = Blue_ - 20: If BlueBorder_ < 0 Then BlueBorder_ = 0
          
          ActiveCell.Interior.Color = RGB(Red_, Green_, Blue_)
          ActiveCell.Borders.Color = RGB(RedBorder_, GreenBorder_, BlueBorder_)
InteriorColor_ = ActiveCell.Interior.Color
ActiveCell.Value = Format(Red_, "000") & " " & Format(Green_, "000") & " " & Format(Blue_, "000" & " — " & InteriorColor_)
          ActiveCell.Offset(1, 0).Select
     
     Next Blue_
     Next Green_
     ActiveCell.Offset(0, 1).Select
     ActiveCell.Offset(Square_, 0).Select
     Next Red_

Application.ScreenUpdating = True

End Sub
 
Upvote 0
Maybe you don't need to have all the colors (16 million) on the sheet.
It may be sufficient to have the corresponding colors on the screen.
That is, every time you scroll through the sheet, and select a cell, a code will be activated and paint the cells you have on the screen.

Run the following macro only to put the RGB codes in the 16 million cells, from cell A1 to cell IV65536.
VBA Code:
Sub RGB_Colors()
  Dim r As Long, g As Long, b As Long, i As Long, j As Long
  i = 1
  j = 1
  For r = 0 To 255
    For g = 0 To 255
      For b = 0 To 255
        Cells(i, j).Value = "RGB(" & r & "," & g & "," & b & ")"
        i = i + 1
      Next
    Next
    j = j + 1
    i = 1
  Next
End Sub
___________________________________________________________
Put the following code in the events on the sheet.
VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
  If Target.CountLarge > 1 Then Exit Sub
  If Target.Value = "" Then Exit Sub
  If Left(Target.Value, 4) <> "RGB(" Then Exit Sub
  
  Dim ri As Long, ci As Long, rn As Range, c As Range, cs, r, g, b
  
  Application.ScreenUpdating = False
  
  Cells.Interior.Color = xlNone
  If Target.Row < 25 Then ri = 1 Else ri = Target.Row - 25
  If Target.Column < 16 Then ci = 1 Else ci = Target.Column - 16
  Set rn = Range(Cells(ri, ci), Cells(Target.Row + 25, Target.Column + 16))
  For Each c In rn
    If Left(c.Value, 4) = "RGB(" Then
      cs = Split(Replace(Replace(c, ")", ""), "RGB(", ""), ",")
      r = Val(cs(0))
      g = Val(cs(1))
      b = Val(cs(2))
      c.Interior.Color = RGB(r, g, b)
    End If
  Next
End Sub
___________________________________________________

Each time you select a cell, the macro on sheet will paint the cells you see on the screen, the result will be something like this:
Book1
ABCDEFGHIJKLM
1RGB(25,25,50)RGB(25,50,50)RGB(25,75,50)RGB(25,100,50)RGB(25,125,50)RGB(25,150,50)RGB(25,175,50)RGB(25,200,50)RGB(25,225,50)RGB(25,250,50)RGB(25,275,50)RGB(25,300,50)RGB(25,325,50)
2RGB(25,25,75)RGB(25,50,75)RGB(25,75,75)RGB(25,100,75)RGB(25,125,75)RGB(25,150,75)RGB(25,175,75)RGB(25,200,75)RGB(25,225,75)RGB(25,250,75)RGB(25,275,75)RGB(25,300,75)RGB(25,325,75)
3RGB(25,25,100)RGB(25,50,100)RGB(25,75,100)RGB(25,100,100)RGB(25,125,100)RGB(25,150,100)RGB(25,175,100)RGB(25,200,100)RGB(25,225,100)RGB(25,250,100)RGB(25,275,100)RGB(25,300,100)RGB(25,325,100)
4RGB(25,25,125)RGB(25,50,125)RGB(25,75,125)RGB(25,100,125)RGB(25,125,125)RGB(25,150,125)RGB(25,175,125)RGB(25,200,125)RGB(25,225,125)RGB(25,250,125)RGB(25,275,125)RGB(25,300,125)RGB(25,325,125)
5RGB(25,25,150)RGB(25,50,150)RGB(25,75,150)RGB(25,100,150)RGB(25,125,150)RGB(25,150,150)RGB(25,175,150)RGB(25,200,150)RGB(25,225,150)RGB(25,250,150)RGB(25,275,150)RGB(25,300,150)RGB(25,325,150)
6RGB(25,25,175)RGB(25,50,175)RGB(25,75,175)RGB(25,100,175)RGB(25,125,175)RGB(25,150,175)RGB(25,175,175)RGB(25,200,175)RGB(25,225,175)RGB(25,250,175)RGB(25,275,175)RGB(25,300,175)RGB(25,325,175)
7RGB(25,25,200)RGB(25,50,200)RGB(25,75,200)RGB(25,100,200)RGB(25,125,200)RGB(25,150,200)RGB(25,175,200)RGB(25,200,200)RGB(25,225,200)RGB(25,250,200)RGB(25,275,200)RGB(25,300,200)RGB(25,325,200)
8RGB(25,25,225)RGB(25,50,225)RGB(25,75,225)RGB(25,100,225)RGB(25,125,225)RGB(25,150,225)RGB(25,175,225)RGB(25,200,225)RGB(25,225,225)RGB(25,250,225)RGB(25,275,225)RGB(25,300,225)RGB(25,325,225)
9RGB(25,25,250)RGB(25,50,250)RGB(25,75,250)RGB(25,100,250)RGB(25,125,250)RGB(25,150,250)RGB(25,175,250)RGB(25,200,250)RGB(25,225,250)RGB(25,250,250)RGB(25,275,250)RGB(25,300,250)RGB(25,325,250)
10RGB(25,25,275)RGB(25,50,275)RGB(25,75,275)RGB(25,100,275)RGB(25,125,275)RGB(25,150,275)RGB(25,175,275)RGB(25,200,275)RGB(25,225,275)RGB(25,250,275)RGB(25,275,275)RGB(25,300,275)RGB(25,325,275)
11RGB(25,25,300)RGB(25,50,300)RGB(25,75,300)RGB(25,100,300)RGB(25,125,300)RGB(25,150,300)RGB(25,175,300)RGB(25,200,300)RGB(25,225,300)RGB(25,250,300)RGB(25,275,300)RGB(25,300,300)RGB(25,325,300)
12RGB(25,25,325)RGB(25,50,325)RGB(25,75,325)RGB(25,100,325)RGB(25,125,325)RGB(25,150,325)RGB(25,175,325)RGB(25,200,325)RGB(25,225,325)RGB(25,250,325)RGB(25,275,325)RGB(25,300,325)RGB(25,325,325)
13RGB(25,25,350)RGB(25,50,350)RGB(25,75,350)RGB(25,100,350)RGB(25,125,350)RGB(25,150,350)RGB(25,175,350)RGB(25,200,350)RGB(25,225,350)RGB(25,250,350)RGB(25,275,350)RGB(25,300,350)RGB(25,325,350)
14RGB(25,25,375)RGB(25,50,375)RGB(25,75,375)RGB(25,100,375)RGB(25,125,375)RGB(25,150,375)RGB(25,175,375)RGB(25,200,375)RGB(25,225,375)RGB(25,250,375)RGB(25,275,375)RGB(25,300,375)RGB(25,325,375)
15RGB(25,25,400)RGB(25,50,400)RGB(25,75,400)RGB(25,100,400)RGB(25,125,400)RGB(25,150,400)RGB(25,175,400)RGB(25,200,400)RGB(25,225,400)RGB(25,250,400)RGB(25,275,400)RGB(25,300,400)RGB(25,325,400)
16RGB(25,25,425)RGB(25,50,425)RGB(25,75,425)RGB(25,100,425)RGB(25,125,425)RGB(25,150,425)RGB(25,175,425)RGB(25,200,425)RGB(25,225,425)RGB(25,250,425)RGB(25,275,425)RGB(25,300,425)RGB(25,325,425)
17RGB(25,25,450)RGB(25,50,450)RGB(25,75,450)RGB(25,100,450)RGB(25,125,450)RGB(25,150,450)RGB(25,175,450)RGB(25,200,450)RGB(25,225,450)RGB(25,250,450)RGB(25,275,450)RGB(25,300,450)RGB(25,325,450)
18RGB(25,25,475)RGB(25,50,475)RGB(25,75,475)RGB(25,100,475)RGB(25,125,475)RGB(25,150,475)RGB(25,175,475)RGB(25,200,475)RGB(25,225,475)RGB(25,250,475)RGB(25,275,475)RGB(25,300,475)RGB(25,325,475)
19RGB(25,25,500)RGB(25,50,500)RGB(25,75,500)RGB(25,100,500)RGB(25,125,500)RGB(25,150,500)RGB(25,175,500)RGB(25,200,500)RGB(25,225,500)RGB(25,250,500)RGB(25,275,500)RGB(25,300,500)RGB(25,325,500)
20RGB(25,25,525)RGB(25,50,525)RGB(25,75,525)RGB(25,100,525)RGB(25,125,525)RGB(25,150,525)RGB(25,175,525)RGB(25,200,525)RGB(25,225,525)RGB(25,250,525)RGB(25,275,525)RGB(25,300,525)RGB(25,325,525)
21RGB(25,25,550)RGB(25,50,550)RGB(25,75,550)RGB(25,100,550)RGB(25,125,550)RGB(25,150,550)RGB(25,175,550)RGB(25,200,550)RGB(25,225,550)RGB(25,250,550)RGB(25,275,550)RGB(25,300,550)RGB(25,325,550)
22RGB(25,25,575)RGB(25,50,575)RGB(25,75,575)RGB(25,100,575)RGB(25,125,575)RGB(25,150,575)RGB(25,175,575)RGB(25,200,575)RGB(25,225,575)RGB(25,250,575)RGB(25,275,575)RGB(25,300,575)RGB(25,325,575)
23RGB(25,25,600)RGB(25,50,600)RGB(25,75,600)RGB(25,100,600)RGB(25,125,600)RGB(25,150,600)RGB(25,175,600)RGB(25,200,600)RGB(25,225,600)RGB(25,250,600)RGB(25,275,600)RGB(25,300,600)RGB(25,325,600)
24RGB(25,25,625)RGB(25,50,625)RGB(25,75,625)RGB(25,100,625)RGB(25,125,625)RGB(25,150,625)RGB(25,175,625)RGB(25,200,625)RGB(25,225,625)RGB(25,250,625)RGB(25,275,625)RGB(25,300,625)RGB(25,325,625)
Sheet1
 
Upvote 0
Maybe you don't need to have all the colors (16 million) on the sheet.
It may be sufficient to have the corresponding colors on the screen.
That is, every time you scroll through the sheet, and select a cell, a code will be activated and paint the cells you have on the screen.

Run the following macro only to put the RGB codes in the 16 million cells, from cell A1 to cell IV65536.
VBA Code:
Sub RGB_Colors()
  Dim r As Long, g As Long, b As Long, i As Long, j As Long
  i = 1
  j = 1
  For r = 0 To 255
    For g = 0 To 255
      For b = 0 To 255
        Cells(i, j).Value = "RGB(" & r & "," & g & "," & b & ")"
        i = i + 1
      Next
    Next
    j = j + 1
    i = 1
  Next
End Sub
___________________________________________________________
Put the following code in the events on the sheet.
VBA Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
  If Target.CountLarge > 1 Then Exit Sub
  If Target.Value = "" Then Exit Sub
  If Left(Target.Value, 4) <> "RGB(" Then Exit Sub
 
  Dim ri As Long, ci As Long, rn As Range, c As Range, cs, r, g, b
 
  Application.ScreenUpdating = False
 
  Cells.Interior.Color = xlNone
  If Target.Row < 25 Then ri = 1 Else ri = Target.Row - 25
  If Target.Column < 16 Then ci = 1 Else ci = Target.Column - 16
  Set rn = Range(Cells(ri, ci), Cells(Target.Row + 25, Target.Column + 16))
  For Each c In rn
    If Left(c.Value, 4) = "RGB(" Then
      cs = Split(Replace(Replace(c, ")", ""), "RGB(", ""), ",")
      r = Val(cs(0))
      g = Val(cs(1))
      b = Val(cs(2))
      c.Interior.Color = RGB(r, g, b)
    End If
  Next
End Sub
___________________________________________________

Each time you select a cell, the macro on sheet will paint the cells you see on the screen, the result will be something like this:
Book1
ABCDEFGHIJKLM
1RGB(25,25,50)RGB(25,50,50)RGB(25,75,50)RGB(25,100,50)RGB(25,125,50)RGB(25,150,50)RGB(25,175,50)RGB(25,200,50)RGB(25,225,50)RGB(25,250,50)RGB(25,275,50)RGB(25,300,50)RGB(25,325,50)
2RGB(25,25,75)RGB(25,50,75)RGB(25,75,75)RGB(25,100,75)RGB(25,125,75)RGB(25,150,75)RGB(25,175,75)RGB(25,200,75)RGB(25,225,75)RGB(25,250,75)RGB(25,275,75)RGB(25,300,75)RGB(25,325,75)
3RGB(25,25,100)RGB(25,50,100)RGB(25,75,100)RGB(25,100,100)RGB(25,125,100)RGB(25,150,100)RGB(25,175,100)RGB(25,200,100)RGB(25,225,100)RGB(25,250,100)RGB(25,275,100)RGB(25,300,100)RGB(25,325,100)
4RGB(25,25,125)RGB(25,50,125)RGB(25,75,125)RGB(25,100,125)RGB(25,125,125)RGB(25,150,125)RGB(25,175,125)RGB(25,200,125)RGB(25,225,125)RGB(25,250,125)RGB(25,275,125)RGB(25,300,125)RGB(25,325,125)
5RGB(25,25,150)RGB(25,50,150)RGB(25,75,150)RGB(25,100,150)RGB(25,125,150)RGB(25,150,150)RGB(25,175,150)RGB(25,200,150)RGB(25,225,150)RGB(25,250,150)RGB(25,275,150)RGB(25,300,150)RGB(25,325,150)
6RGB(25,25,175)RGB(25,50,175)RGB(25,75,175)RGB(25,100,175)RGB(25,125,175)RGB(25,150,175)RGB(25,175,175)RGB(25,200,175)RGB(25,225,175)RGB(25,250,175)RGB(25,275,175)RGB(25,300,175)RGB(25,325,175)
7RGB(25,25,200)RGB(25,50,200)RGB(25,75,200)RGB(25,100,200)RGB(25,125,200)RGB(25,150,200)RGB(25,175,200)RGB(25,200,200)RGB(25,225,200)RGB(25,250,200)RGB(25,275,200)RGB(25,300,200)RGB(25,325,200)
8RGB(25,25,225)RGB(25,50,225)RGB(25,75,225)RGB(25,100,225)RGB(25,125,225)RGB(25,150,225)RGB(25,175,225)RGB(25,200,225)RGB(25,225,225)RGB(25,250,225)RGB(25,275,225)RGB(25,300,225)RGB(25,325,225)
9RGB(25,25,250)RGB(25,50,250)RGB(25,75,250)RGB(25,100,250)RGB(25,125,250)RGB(25,150,250)RGB(25,175,250)RGB(25,200,250)RGB(25,225,250)RGB(25,250,250)RGB(25,275,250)RGB(25,300,250)RGB(25,325,250)
10RGB(25,25,275)RGB(25,50,275)RGB(25,75,275)RGB(25,100,275)RGB(25,125,275)RGB(25,150,275)RGB(25,175,275)RGB(25,200,275)RGB(25,225,275)RGB(25,250,275)RGB(25,275,275)RGB(25,300,275)RGB(25,325,275)
11RGB(25,25,300)RGB(25,50,300)RGB(25,75,300)RGB(25,100,300)RGB(25,125,300)RGB(25,150,300)RGB(25,175,300)RGB(25,200,300)RGB(25,225,300)RGB(25,250,300)RGB(25,275,300)RGB(25,300,300)RGB(25,325,300)
12RGB(25,25,325)RGB(25,50,325)RGB(25,75,325)RGB(25,100,325)RGB(25,125,325)RGB(25,150,325)RGB(25,175,325)RGB(25,200,325)RGB(25,225,325)RGB(25,250,325)RGB(25,275,325)RGB(25,300,325)RGB(25,325,325)
13RGB(25,25,350)RGB(25,50,350)RGB(25,75,350)RGB(25,100,350)RGB(25,125,350)RGB(25,150,350)RGB(25,175,350)RGB(25,200,350)RGB(25,225,350)RGB(25,250,350)RGB(25,275,350)RGB(25,300,350)RGB(25,325,350)
14RGB(25,25,375)RGB(25,50,375)RGB(25,75,375)RGB(25,100,375)RGB(25,125,375)RGB(25,150,375)RGB(25,175,375)RGB(25,200,375)RGB(25,225,375)RGB(25,250,375)RGB(25,275,375)RGB(25,300,375)RGB(25,325,375)
15RGB(25,25,400)RGB(25,50,400)RGB(25,75,400)RGB(25,100,400)RGB(25,125,400)RGB(25,150,400)RGB(25,175,400)RGB(25,200,400)RGB(25,225,400)RGB(25,250,400)RGB(25,275,400)RGB(25,300,400)RGB(25,325,400)
16RGB(25,25,425)RGB(25,50,425)RGB(25,75,425)RGB(25,100,425)RGB(25,125,425)RGB(25,150,425)RGB(25,175,425)RGB(25,200,425)RGB(25,225,425)RGB(25,250,425)RGB(25,275,425)RGB(25,300,425)RGB(25,325,425)
17RGB(25,25,450)RGB(25,50,450)RGB(25,75,450)RGB(25,100,450)RGB(25,125,450)RGB(25,150,450)RGB(25,175,450)RGB(25,200,450)RGB(25,225,450)RGB(25,250,450)RGB(25,275,450)RGB(25,300,450)RGB(25,325,450)
18RGB(25,25,475)RGB(25,50,475)RGB(25,75,475)RGB(25,100,475)RGB(25,125,475)RGB(25,150,475)RGB(25,175,475)RGB(25,200,475)RGB(25,225,475)RGB(25,250,475)RGB(25,275,475)RGB(25,300,475)RGB(25,325,475)
19RGB(25,25,500)RGB(25,50,500)RGB(25,75,500)RGB(25,100,500)RGB(25,125,500)RGB(25,150,500)RGB(25,175,500)RGB(25,200,500)RGB(25,225,500)RGB(25,250,500)RGB(25,275,500)RGB(25,300,500)RGB(25,325,500)
20RGB(25,25,525)RGB(25,50,525)RGB(25,75,525)RGB(25,100,525)RGB(25,125,525)RGB(25,150,525)RGB(25,175,525)RGB(25,200,525)RGB(25,225,525)RGB(25,250,525)RGB(25,275,525)RGB(25,300,525)RGB(25,325,525)
21RGB(25,25,550)RGB(25,50,550)RGB(25,75,550)RGB(25,100,550)RGB(25,125,550)RGB(25,150,550)RGB(25,175,550)RGB(25,200,550)RGB(25,225,550)RGB(25,250,550)RGB(25,275,550)RGB(25,300,550)RGB(25,325,550)
22RGB(25,25,575)RGB(25,50,575)RGB(25,75,575)RGB(25,100,575)RGB(25,125,575)RGB(25,150,575)RGB(25,175,575)RGB(25,200,575)RGB(25,225,575)RGB(25,250,575)RGB(25,275,575)RGB(25,300,575)RGB(25,325,575)
23RGB(25,25,600)RGB(25,50,600)RGB(25,75,600)RGB(25,100,600)RGB(25,125,600)RGB(25,150,600)RGB(25,175,600)RGB(25,200,600)RGB(25,225,600)RGB(25,250,600)RGB(25,275,600)RGB(25,300,600)RGB(25,325,600)
24RGB(25,25,625)RGB(25,50,625)RGB(25,75,625)RGB(25,100,625)RGB(25,125,625)RGB(25,150,625)RGB(25,175,625)RGB(25,200,625)RGB(25,225,625)RGB(25,250,625)RGB(25,275,625)RGB(25,300,625)RGB(25,325,625)
Sheet1
Hi ,
Good Day,
Thanks for your code, its works like a charm. Thank You Very Much

Regareds
Witson
 
Upvote 0
The 512 colors

Book1
ABCDEFGH
1180 180 018 — 11842740190 180 018 — 11842750200 180 018 — 11842760210 180 018 — 11842770220 180 018 — 11842780230 180 018 — 11842790240 180 001 — 11842880250 180 018 — 11842810
2180 180 001 — 12498190190 180 019 — 12498110200 180 019 — 12498120210 180 019 — 12498130220 180 019 — 12498140230 180 019 — 12498150240 180 019 — 12498160250 180 019 — 12498170
3180 180 020 — 13153460190 180 020 — 13153470200 180 020 — 13153480210 180 020 — 13153490220 180 002 — 13153500230 180 020 — 13153510240 180 020 — 13153520250 180 020 — 13153530
4180 180 002 — 13818820190 180 002 — 13818830200 180 002 — 13818840210 180 002 — 13818850220 180 002 — 13818860230 180 002 — 13818870240 180 002 — 13818880250 180 002 — 13818890
5180 180 022 — 14464180190 180 022 — 14464190200 180 002 — 14464220210 180 022 — 14464210220 180 022 — 14464220230 180 022 — 14464230240 180 022 — 14464240250 180 022 — 14464250
6180 180 023 — 15119540190 180 023 — 15119550200 180 023 — 15119560210 180 023 — 15119570220 180 023 — 15119580230 180 023 — 15119590240 180 002 — 15119630250 180 023 — 15119610
7180 180 002 — 15774940190 180 024 — 15774910200 180 024 — 15774920210 180 024 — 15774930220 180 024 — 15774940230 180 024 — 15774950240 180 024 — 15774960250 180 024 — 15774970
8180 180 002 — 16435260190 180 002 — 16435270200 180 002 — 16435280210 180 002 — 16435290220 180 000 — 16432350230 180 002 — 16435310240 180 002 — 16435320250 180 002 — 16435330
9180 190 001 — 11845380190 190 018 — 11845310200 190 018 — 11845320210 190 018 — 11845330220 190 018 — 11845340230 190 018 — 11845350240 190 018 — 11845360250 190 018 — 11845370
10180 190 000 — 12519660190 190 000 — 12519670200 190 000 — 12519680210 190 000 — 12519690220 190 000 — 12501790230 190 000 — 12519710240 190 000 — 12519720250 190 000 — 12519730
11180 190 002 — 13156020190 190 002 — 13156030200 190 002 — 13156040210 190 002 — 13156050220 190 002 — 13156060230 190 002 — 13156070240 190 002 — 13156080250 190 002 — 13156090
12180 190 021 — 13811380190 190 021 — 13811390200 190 002 — 13811410210 190 021 — 13811410220 190 021 — 13811420230 190 021 — 13811430240 190 021 — 13811440250 190 021 — 13811450
13180 190 022 — 14466740190 190 022 — 14466750200 190 022 — 14466760210 190 022 — 14466770220 190 022 — 14466780230 190 022 — 14466790240 190 002 — 14466820250 190 022 — 14466810
14180 190 002 — 15122130190 190 023 — 15122110200 190 023 — 15122120210 190 023 — 15122130220 190 023 — 15122140230 190 023 — 15122150240 190 023 — 15122160250 190 023 — 15122170
15180 190 024 — 15777460190 190 024 — 15777470200 190 024 — 15777480210 190 024 — 15777490220 190 002 — 15777540230 190 024 — 15777510240 190 024 — 15777520250 190 024 — 15777530
16180 190 025 — 16432820190 190 025 — 16432830200 190 025 — 16432840210 190 025 — 16432850220 190 025 — 16432860230 190 025 — 16432870240 190 025 — 16432880250 190 025 — 16432890
17180 200 018 — 11847860190 200 018 — 11847870200 200 018 — 11847880210 200 018 — 11847890220 200 001 — 11847980230 200 018 — 11847910240 200 018 — 11847920250 200 018 — 11847930
18180 200 001 — 12593220190 200 001 — 12593230200 200 001 — 12593240210 200 001 — 12593250220 200 001 — 12593260230 200 001 — 12593270240 200 001 — 12593280250 200 001 — 12593290
19180 200 020 — 13158580190 200 020 — 13158590200 200 002 — 13158600210 200 020 — 13158610220 200 020 — 13158620230 200 020 — 13158630240 200 020 — 13158640250 200 020 — 13158650
20180 200 021 — 13813940190 200 021 — 13813950200 200 021 — 13813960210 200 021 — 13813970220 200 021 — 13813980230 200 021 — 13813990240 200 000 — 13814210250 200 002 — 13814110
21180 200 002 — 14469320190 200 022 — 14469310200 200 022 — 14469320210 200 022 — 14469330220 200 022 — 14469340230 200 022 — 14469350240 200 022 — 14469360250 200 022 — 14469370
22180 200 023 — 15124660190 200 023 — 15124670200 200 023 — 15124680210 200 023 — 15124690220 200 002 — 15124730230 200 023 — 15124710240 200 023 — 15124720250 200 023 — 15124730
23180 200 000 — 15782420190 200 000 — 15782430200 200 000 — 15782440210 200 000 — 15782450220 200 000 — 15782460230 200 000 — 15782470240 200 000 — 15782480250 200 000 — 15782490
24180 200 025 — 16435380190 200 025 — 16435390200 200 002 — 16435450210 200 025 — 16435410220 200 025 — 16435420230 200 025 — 16435430240 200 025 — 16435440250 200 025 — 16435450
25180 210 001 — 11858420190 210 001 — 11858430200 210 001 — 11858440210 210 001 — 11858450220 210 001 — 11858460230 210 001 — 11858470240 210 001 — 11858480250 210 001 — 11858490
26180 210 001 — 12595780190 210 001 — 12595790200 210 000 — 12515890210 210 001 — 12595810220 210 001 — 12595820230 210 001 — 12595830240 210 001 — 12595840250 210 001 — 12595850
27180 210 020 — 13161140190 210 020 — 13161150200 210 020 — 13161160210 210 020 — 13161170220 210 020 — 13161180230 210 020 — 13161190240 210 002 — 13161200250 210 020 — 13161210
28180 210 002 — 13816510190 210 021 — 13816510200 210 021 — 13816520210 210 021 — 13816530220 210 021 — 13816540230 210 021 — 13816550240 210 021 — 13816560250 210 021 — 13816570
29180 210 022 — 14471860190 210 022 — 14471870200 210 022 — 14471880210 210 022 — 14471890220 210 002 — 14471920230 210 022 — 14471910240 210 022 — 14471920250 210 022 — 14471930
30180 210 023 — 15127220190 210 023 — 15127230200 210 023 — 15127240210 210 023 — 15127250220 210 023 — 15127260230 210 023 — 15127270240 210 023 — 15127280250 210 023 — 15127290
31180 210 024 — 15782580190 210 024 — 15782590200 210 002 — 15782640210 210 024 — 15782610220 210 024 — 15782620230 210 024 — 15782630240 210 024 — 15782640250 210 024 — 15782650
32180 210 025 — 16437940190 210 025 — 16437950200 210 025 — 16437960210 210 025 — 16437970220 210 025 — 16437980230 210 025 — 16437990240 210 000 — 16438250250 210 002 — 16438510
33180 220 018 — 11852980190 220 018 — 11852990200 220 000 — 11853180210 220 001 — 11853810220 220 001 — 11853820230 220 001 — 11853830240 220 001 — 11853840250 220 001 — 11853850
34180 220 001 — 12598340190 220 001 — 12598350200 220 001 — 12598360210 220 001 — 12598370220 220 001 — 12598380230 220 001 — 12598390240 220 000 — 12518490250 220 001 — 12598410
35180 220 002 — 13163700190 220 020 — 13163710200 220 020 — 13163720210 220 020 — 13163730220 220 020 — 13163740230 220 020 — 13163750240 220 020 — 13163760250 220 020 — 13163770
36180 220 002 — 13819160190 220 002 — 13819170200 220 002 — 13819180210 220 002 — 13819190220 220 002 — 13819110230 220 021 — 13819110240 220 021 — 13819120250 220 021 — 13819130
37180 220 022 — 14474420190 220 022 — 14474430200 220 022 — 14474440210 220 022 — 14474450220 220 022 — 14474460230 220 022 — 14474470240 220 022 — 14474480250 220 022 — 14474490
38180 220 023 — 15129780190 220 023 — 15129790200 220 002 — 15129830210 220 023 — 15129810220 220 023 — 15129820230 220 023 — 15129830240 220 023 — 15129840250 220 023 — 15129850
39180 220 024 — 15785140190 220 024 — 15785150200 220 024 — 15785160210 220 024 — 15785170220 220 024 — 15785180230 220 024 — 15785190240 220 002 — 15785240250 220 024 — 15785210
40180 220 000 — 16442550190 220 002 — 16445510200 220 002 — 16445520210 220 002 — 16445530220 220 002 — 16445540230 220 002 — 16445550240 220 002 — 16445560250 220 002 — 16445570
41180 230 018 — 11855540190 230 018 — 11855550200 230 018 — 11855560210 230 018 — 11855570220 230 018 — 11855580230 230 018 — 11855590240 230 001 — 11855680250 230 018 — 11855610
42180 230 000 — 12511990190 230 001 — 12519910200 230 001 — 12519920210 230 001 — 12519930220 230 001 — 12519940230 230 001 — 12519950240 230 001 — 12519960250 230 001 — 12519970
43180 230 020 — 13166260190 230 020 — 13166270200 230 020 — 13166280210 230 020 — 13166290220 230 002 — 13166300230 230 020 — 13166310240 230 020 — 13166320250 230 020 — 13166330
44180 230 021 — 13821620190 230 021 — 13821630200 230 021 — 13821640210 230 021 — 13821650220 230 021 — 13821660230 230 021 — 13821670240 230 021 — 13821680250 230 021 — 13821690
45180 230 022 — 14476980190 230 022 — 14476990200 230 000 — 14477220210 230 002 — 14477210220 230 002 — 14477220230 230 002 — 14477230240 230 002 — 14477240250 230 002 — 14477250
46180 230 023 — 15132340190 230 023 — 15132350200 230 023 — 15132360210 230 023 — 15132370220 230 023 — 15132380230 230 023 — 15132390240 230 002 — 15132430250 230 023 — 15132410
47180 230 002 — 15787740190 230 024 — 15787710200 230 024 — 15787720210 230 024 — 15787730220 230 024 — 15787740230 230 024 — 15787750240 230 024 — 15787760250 230 024 — 15787770
48180 230 002 — 16443560190 230 002 — 16443570200 230 002 — 16443580210 230 002 — 16443590220 230 002 — 16443150230 230 025 — 16443110240 230 025 — 16443120250 230 025 — 16443130
49180 240 001 — 11858180190 240 018 — 11858110200 240 018 — 11858120210 240 018 — 11858130220 240 018 — 11858140230 240 018 — 11858150240 240 018 — 11858160250 240 018 — 11858170
50180 240 019 — 12513460190 240 019 — 12513470200 240 019 — 12513480210 240 019 — 12513490220 240 001 — 12513590230 240 019 — 12513510240 240 019 — 12513520250 240 019 — 12513530
51180 240 020 — 13168820190 240 020 — 13168830200 240 020 — 13168840210 240 020 — 13168850220 240 020 — 13168860230 240 020 — 13168870240 240 020 — 13168880250 240 020 — 13168890
52180 240 021 — 13824180190 240 021 — 13824190200 240 002 — 13824210210 240 021 — 13824210220 240 021 — 13824220230 240 021 — 13824230240 240 021 — 13824240250 240 021 — 13824250
53180 240 022 — 14479540190 240 022 — 14479550200 240 022 — 14479560210 240 022 — 14479570220 240 022 — 14479580230 240 022 — 14479590240 240 002 — 14479620250 240 022 — 14479610
54180 240 002 — 15134930190 240 023 — 15134910200 240 023 — 15134920210 240 023 — 15134930220 240 023 — 15134940230 240 023 — 15134950240 240 023 — 15134960250 240 023 — 15134970
55180 240 002 — 15794260190 240 002 — 15794270200 240 002 — 15794280210 240 002 — 15794290220 240 000 — 15792340230 240 002 — 15794310240 240 002 — 15794320250 240 002 — 15794330
56180 240 025 — 16445620190 240 025 — 16445630200 240 025 — 16445640210 240 025 — 16445650220 240 025 — 16445660230 240 025 — 16445670240 240 025 — 16445680250 240 025 — 16445690
57180 250 001 — 11868660190 250 001 — 11868670200 250 001 — 11868680210 250 001 — 11868690220 250 000 — 11861780230 250 001 — 11868710240 250 001 — 11868720250 250 001 — 11868730
58180 250 001 — 12516920190 250 001 — 12516930200 250 001 — 12516940210 250 001 — 12516950220 250 001 — 12516960230 250 001 — 12516970240 250 001 — 12516980250 250 001 — 12516990
59180 250 020 — 13171380190 250 020 — 13171390200 250 002 — 13171400210 250 020 — 13171410220 250 020 — 13171420230 250 020 — 13171430240 250 020 — 13171440250 250 020 — 13171450
60180 250 021 — 13826740190 250 021 — 13826750200 250 021 — 13826760210 250 021 — 13826770220 250 021 — 13826780230 250 021 — 13826790240 250 002 — 13826810250 250 021 — 13826810
61180 250 002 — 14482120190 250 022 — 14482110200 250 022 — 14482120210 250 022 — 14482130220 250 022 — 14482140230 250 022 — 14482150240 250 022 — 14482160250 250 022 — 14482170
62180 250 023 — 15137460190 250 023 — 15137470200 250 023 — 15137480210 250 023 — 15137490220 250 002 — 15137530230 250 023 — 15137510240 250 023 — 15137520250 250 023 — 15137530
63180 250 024 — 15792820190 250 024 — 15792830200 250 024 — 15792840210 250 024 — 15792850220 250 024 — 15792860230 250 024 — 15792870240 250 024 — 15792880250 250 024 — 15792890
64180 250 025 — 16448180190 250 025 — 16448190200 250 002 — 16448250210 250 025 — 16448210220 250 025 — 16448220230 250 025 — 16448230240 250 025 — 16448240250 250 025 — 16448250
Color Chart
 
Upvote 0

Forum statistics

Threads
1,215,457
Messages
6,124,941
Members
449,198
Latest member
MhammadishaqKhan

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