+ Reply to Thread
Results 1 to 8 of 8

Tab Color Change

Hybrid View

  1. #1
    Banned User!
    Join Date
    03-06-2014
    Location
    USA
    MS-Off Ver
    2010
    Posts
    295

    Tab Color Change

    I have the following code that when run locks the worksheet from editing. Can something be added to change the tab color of that worksheet to red ?

    Thank you


    Sub LockRange()
    Dim Mycell As Range
    
    ActiveSheet.Unprotect "92bp55"
    
    For Each Mycell In Range("A1:N70")
    If Mycell.Locked = False Then
    Mycell.MergeArea.Locked = True
    End If
    Next Mycell
    
    ActiveSheet.Protect "92bp55"
    End Sub

  2. #2
    Forum Expert gmr4evr1's Avatar
    Join Date
    11-24-2014
    Location
    Texas
    MS-Off Ver
    Office 2010 and 2007
    Posts
    3,448

    Re: Tab Color Change

    Add this to your code
    ActiveSheet.Tab.Color = 255
    1N73LL1G3NC3 15 7H3 4B1L17Y 70 4D4P7 70 CH4NG3 - 573PH3N H4WK1NG
    You don't have to add Rep if I have helped you out (but it would be nice), but please mark the thread as SOLVED if your issue is resolved.

    Tom

  3. #3
    Banned User!
    Join Date
    03-06-2014
    Location
    USA
    MS-Off Ver
    2010
    Posts
    295

    Re: Tab Color Change

    Great worked perfectly. What is the number for green so I can add to the unlock code?

  4. #4
    Forum Expert gmr4evr1's Avatar
    Join Date
    11-24-2014
    Location
    Texas
    MS-Off Ver
    Office 2010 and 2007
    Posts
    3,448

    Re: Tab Color Change

    That would be
    ActiveSheet.Tab.Color = RGB(0, 255, 0)

  5. #5
    Banned User!
    Join Date
    03-06-2014
    Location
    USA
    MS-Off Ver
    2010
    Posts
    295

    Re: Tab Color Change

    That works but I don't understand it. My project is getting very close thanks to all of your great help.

  6. #6
    Forum Expert gmr4evr1's Avatar
    Join Date
    11-24-2014
    Location
    Texas
    MS-Off Ver
    Office 2010 and 2007
    Posts
    3,448

    Re: Tab Color Change

    You're welcome.
    There are a few ways it can be done. I just gave you the one that I knew. You could also use these...
    For red
    ActiveSheet.Tab.ColorIndex = 3
    For Green
    ActiveSheet.Tab.ColorIndex = 10
    The numbers go from 1 through 56. Here is a link to the numbers and what color they represent
    http://dmcritchie.mvps.org/excel/colors.htm

  7. #7
    Forum Expert
    Join Date
    04-01-2013
    Location
    East Auckland
    MS-Off Ver
    Excel 365
    Posts
    1,347

    Re: Tab Color Change

    I think the RGB one is a good one for understanding.

    ActiveSheet.Tab.Color = RGB(0, 255, 0)
    {change the activesheet}.{specifically the current tab attributes}.{specifically the color} to equal in RGB format {red green blue in that order} ({no red}, {lots of green}, {no blue})

    makes sense right?

  8. #8
    Banned User!
    Join Date
    03-06-2014
    Location
    USA
    MS-Off Ver
    2010
    Posts
    295

    Re: Tab Color Change

    I thank you for the education.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] change fill color of a range of cells based on color of a cell?
    By DarMelNel in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-20-2014, 04:48 PM
  2. [SOLVED] vba code to change the cell color by looking in a range that contains the color index valu
    By ckklconner in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 11-24-2013, 09:15 AM
  3. Mouse rolls over to cell will change the tab color, font color and tp bold type
    By Rocky2013 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 10-20-2013, 10:36 AM
  4. Find a duplicate and then use the duplicates interior.color to change cell color.
    By bopsgtir in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-01-2012, 03:54 PM
  5. VBA / Macro help needed to change the barchart color based on Cell Color
    By krjoshi in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-28-2012, 09:15 AM
  6. Replies: 0
    Last Post: 09-26-2012, 01:08 PM
  7. Replies: 3
    Last Post: 07-08-2010, 06:48 PM
  8. Format cell color on change, how to change the color in other columns as well?
    By s80NL in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-28-2007, 09:24 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1