+ Reply to Thread
Results 1 to 5 of 5

Highlighting the same cell in one workbook with multiple sheets with various sheets names.

  1. #1
    Registered User
    Join Date
    11-30-2011
    Location
    Arizona
    MS-Off Ver
    Excel 2003
    Posts
    27

    Highlighting the same cell in one workbook with multiple sheets with various sheets names.

    [SOLVED]Is there a way to do this , Just open the multiple sheets and go to the same cell , highlight it then go to the next sheet. The sheet names will change monthly.
    Do I have to actually specify the sheet name?
    Last edited by DanielRay; 03-14-2013 at 01:55 PM.

  2. #2
    Forum Expert
    Join Date
    10-06-2008
    Location
    Canada
    MS-Off Ver
    2007 / 2013
    Posts
    5,522

    Re: Highlighting the same cell in one workbook with multiple sheets with various sheets na

    Try this on a copy of your workbook.

    Please Login or Register  to view this content.

  3. #3
    Registered User
    Join Date
    11-30-2011
    Location
    Arizona
    MS-Off Ver
    Excel 2003
    Posts
    27

    Re: Highlighting the same cell in one workbook with multiple sheets with various sheets na

    First thanks for the Quick response. Second if i wanted to add multiple cells do i just copy this as a new line "Sheets(i).Range("D15").Interior.Color = vbRed" or is there a separator like a comma,
    to put multiple cells?
    Last edited by DanielRay; 03-14-2013 at 12:29 PM. Reason: more info

  4. #4
    Forum Expert
    Join Date
    10-06-2008
    Location
    Canada
    MS-Off Ver
    2007 / 2013
    Posts
    5,522

    Re: Highlighting the same cell in one workbook with multiple sheets with various sheets na

    Sub Maybe()
    Dim i As Single
    For i = 1 To ActiveWorkbook.Sheets.Count
    Sheets(i).Range("D5, D7, D9").Interior.Color = vbRed
    Next i
    End Sub

  5. #5
    Registered User
    Join Date
    11-30-2011
    Location
    Arizona
    MS-Off Ver
    Excel 2003
    Posts
    27

    Re: Highlighting the same cell in one workbook with multiple sheets with various sheets na

    SOLVED Solved

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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