Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How do I change the color of a cell on one worksheet based on the color of a
different tab worksheet? Example. I have cell A3 on Worksheet 1, and I want it to change based on the tab color of worksheet 3. Thanks, |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Worksheets(3).Tab.ColorIndex
"Michael" wrote: How do I change the color of a cell on one worksheet based on the color of a different tab worksheet? Example. I have cell A3 on Worksheet 1, and I want it to change based on the tab color of worksheet 3. Thanks, |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Here is an example Private Sub CommandButton1_Click() Sheets(1).Select Range("A1").Select ActiveCell.Interior.ColorIndex = Worksheets(3).Tab.ColorIndex End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Change tab color based on current color of a cell | Excel Discussion (Misc queries) | |||
Can you change the color of one cell based on the color of another | Excel Discussion (Misc queries) | |||
Excel: Syntax to change cell color based on color of another cell | Excel Worksheet Functions | |||
change fill color of a range of cells based on color of a cell? | Excel Programming | |||
Browse Forms Controls and change TextBox color based on cell color | Excel Programming |