Written by Allen Wyatt (last updated March 11, 2023)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021
Ray understands that he can set a color for the worksheet tabs that display at the bottom of the Excel screen. He wonders if he can make that color conditional on the contents or status of the worksheet. For example, he would like the tab to be yellow if user input is needed in the worksheet and green if the input has actually been entered.
Changing the color of a worksheet tab can only be done manually or via a macro. Here's a simple macro that will check two cell in the worksheet, see if there is anything in those cells, and then modify the tab color based on the findings:
Sub ChangeColor() If Range("A1") = "" Or Range("A5") = "" Then ActiveSheet.Tab.Color = vbYellow Else ActiveSheet.Tab.Color = vbGreen End If End Sub
The problem with such a macro, of course, is that you must run it manually. If you want the color changes to be more automatic, then you could incorporate the logic into an event handler. This macro should be added to the code for the worksheet itself. (Right-click on the worksheet tab and choose View Code from the resulting Context menu. That's where this macro goes.)
Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Range("A1") = "" Or Range("A5") = "" Then ActiveSheet.Tab.Color = vbYellow Else ActiveSheet.Tab.Color = vbGreen End If End Sub
The macro will affect only the single worksheet, and it will be triggered each time you change the cell selected within that worksheet. If you want something that runs less often and that is easier to add to multiple worksheets, then a good approach is to use three macros—two in the code window for the worksheet, and one in a regular module. Here's the one you should place in the regular macro module:
Private Sub SetTabColor(sRangeName) Dim c As Range Me.Tab.Color = vbGreen For Each c In Range(sRangeName).Cells If IsEmpty(c) Then Me.Tab.Color = vbYellow Exit For End If Next c End Sub
This macro tests to see whether any of the cells in a named range is empty. If that occurs, then the tab color is set to yellow. (You could easily change the testing conditions before setting the tab color.) To make the macro work, however, you need to add the following two macros to the code window for the worksheet you want tested:
Private Sub Worksheet_Activate() SetTabColor("CheckRange") End Sub
Private Sub Worksheet_Deactivate() SetTabColor("CheckRange") End Sub
Note that the event handlers are executed whenever the worksheet is activated or deactivated. Note, as well, that the name of the named range containing the cells to check is passed to the SetTabColor macro. In this way, if you add these two macros to multiple worksheets, all you need to do is to change the name of the range for each of those worksheets.
If you have even more complex needs on modifying the tab colors, you will benefit by examining this tip and applying the various techniques discussed there:
https://tips.net/T013710
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (326) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021.
Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!
Excel allows you to protect your worksheets easily, and that includes if you need to protect only a single worksheet out ...
Discover MoreLook at the bottom of a worksheet and chances are you will see tabs for all the worksheets in the current workbook. Want ...
Discover MoreTrying to track down a single worksheet among many hidden worksheets can be a challenge. This tip examines a few ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2023-03-11 13:53:33
Ron S
The following links demonstrate some more techniques for handling color in Excel and coloring tabs
Here are a couple more variations
https://www.extendoffice.com/documents/excel/4090-excel-color-tab-based-on-cell-value.html
https://www.youtube.com/watch?v=052ifNgG5mg
This article talks about tab colors/formatting in general, but does not address the specific question
https://www.indeed.com/career-advice/career-development/change-tabs-color-in-excel
Using color in VBA- How it works- assign color using “IndexNumber”
Change sheet tab color with Excel VBA
https://www.youtube.com/watch?v=ssdJcLBFmy4
Change sheet tab color based on cell value in Excel using VBA
https://www.youtube.com/watch?v=052ifNgG5mg
Change Sheet Tab Color
https://www.youtube.com/watch?v=-MdCfJOg8Vs
Color All Excel Sheet Tabs Differently in One Step
https://www.youtube.com/watch?v=EbScVJNGmXE
Color All Excel Sheet Tabs Differently in One Step (using IndexColor)
https://www.youtube.com/watch?v=EbScVJNGmXE
Oct 9, 2019 VBA Projects
You can organize your workbook by assigning colors to the sheet Tabs that will help you identify the content visually.
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments