+ Reply to Thread
Results 1 to 2 of 2

Highlighting Referenced Cells in Separate Worksheet

  1. #1
    Registered User
    Join Date
    03-20-2012
    Location
    Miami, FL
    MS-Off Ver
    Excel 2007
    Posts
    4

    Highlighting Referenced Cells in Separate Worksheet

    I've scoured Google and asked around and can't seem to find the answer. Is there a way (third party app or VBA) to highlight referenced cells from a formula in one worksheet in another worksheet within the same workbook?

    I oftentimes open up diff. worksheets on different screens and have to manually trace cells from a formula because Excel will only highlight cells referenced on the same page.

    Any help would be greatly appreciated.

    Thanks

  2. #2
    Forum Moderator zbor's Avatar
    Join Date
    02-10-2009
    Location
    Croatia
    MS-Off Ver
    365 ProPlus
    Posts
    15,627

    Re: Highlighting Referenced Cells in Separate Worksheet

    Instead of referencing to ranges you need to give name of the range and reference to a name.

    Example.

    Instead of:
    =ISNUMBER(MATCH(A1,Sheet2!$F$6:$F$21,0))

    Put some name for range Sheet2!$F$6:$F$21 like range_name

    And use:


    =ISNUMBER(MATCH(A1,range_name,0))

+ 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