Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub Macro1()
' thrown together by Comaboy
Dim R As Integer
Dim G As Integer
Dim B As Integer
Dim x
x = 2
Dim sht As Worksheet
For R = 0 To 255
Set sht = Worksheets.Add
sht.Name = "Red " & R
sht.Activate
For G = 0 To 255 Step 10 'for speed
For B = 0 To 255 Step 10 'for speed
Range("A1").Offset(G, B).Value = R & "," & G & "," & B
Range("A1").Offset(G, B).Interior.Color = RGB(R, G, B)
Range("A1").Offset(G, B).Font.Color = RGB(255 - R, 255 - G, 255 - B)
Next
x = x + 1
Next
Next
End Sub