simple tab color change based on any entry of any sheet

esrv303

New Member
Joined
Feb 24, 2024
Messages
9
Office Version
  1. 365
Platform
  1. Windows
I have multiple sheets with various names. User would like tab color to change to (example:red) if ANY entry is made to any cell on that sheet. I have no code experience with excel....thanks
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Copy and paste this macro into the worksheet code module. Do the following: right click the tab name for your sheet and click 'View Code'. Paste the macro into the empty code window that opens up. Close the code window to return to your sheet. Make an entry in any cell and press the RETURN key.
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    ActiveSheet.Tab.Color = vbRed
End Sub
Let me know if you want this action to apply to all your sheets.
 
Upvote 0
Copy and paste this macro into the worksheet code module. Do the following: right click the tab name for your sheet and click 'View Code'. Paste the macro into the empty code window that opens up. Close the code window to return to your sheet. Make an entry in any cell and press the RETURN key.
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    ActiveSheet.Tab.Color = vbRed
End Sub
Let me know if you want this action to apply to all your sheets.
Have not tried yet, but yes, needs to apply to all sheets....thanks so much
 
Upvote 0
Place this macro in the code module for ThisWorkbook. Do the following: Hold down the ALT key and press the F11 key. This will open the Visual Basic Editor. In the left hand pane, double click on "ThisWorkbook". Copy/paste the macro into the empty window that opens up. Close the window to return to your sheet. Make an entry in any cell in any sheet and press the RETURN key.
VBA Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
    ActiveSheet.Tab.Color = vbRed
End Sub
 
Upvote 0
Solution
Place this macro in the code module for ThisWorkbook. Do the following: Hold down the ALT key and press the F11 key. This will open the Visual Basic Editor. In the left hand pane, double click on "ThisWorkbook". Copy/paste the macro into the empty window that opens up. Close the window to return to your sheet. Make an entry in any cell in any sheet and press the RETURN key.
VBA Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
    ActiveSheet.Tab.Color = vbRed
End Sub
That appears to work great. Not to get too deep in the weeds but I assume I need to add this code to my blank template sheet? Because if I clear an entry and that sheet is blank again, the tab doesn't turn back to no color.....but thank you so much, I'll play with it. Love this forum so far
 
Upvote 0
Replace the previous code with this version and see if it does what you want:
VBA Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
    If WorksheetFunction.CountA(ActiveSheet.UsedRange.Cells) > 0 Then
        ActiveSheet.Tab.Color = vbRed
    Else
        ActiveSheet.Tab.Color = xlNone
    End If
End Sub
 
Upvote 0
Replace the previous code with this version and see if it does what you want:
VBA Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
    If WorksheetFunction.CountA(ActiveSheet.UsedRange.Cells) > 0 Then
        ActiveSheet.Tab.Color = vbRed
    Else
        ActiveSheet.Tab.Color = xlNone
    End If
End Sub
Thanks....used new code and saved....went to random sheet....entered the word "test".....tab turned red.....then cleared contents on the word "test" I entered, but didn't change tab back to no color
 
Upvote 0
When you cleared the contents of the cell, was the sheet blank?
Ahh, I see where you are going I think. All my sheets have beginning data in them, the user then enters quantities and other notes....so guess I should have stated that when I clear contents, I'm just clearing changes made to the original setup of the sheet/sheets
 
Upvote 0
Do you want the tab colour removed if you clear any cell?
 
Upvote 0

Forum statistics

Threads
1,215,078
Messages
6,122,997
Members
449,093
Latest member
masterms

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