+ Reply to Thread
Results 1 to 2 of 2

Need help with Linking / Delinking Excel Files

Hybrid View

  1. #1
    Registered User
    Join Date
    12-05-2006
    Posts
    1

    Exclamation Need help with Linking / Delinking Excel Files

    Hi, I use a lot of excel reports which have multiple links from other excel files.
    These linking almost run up to 100s and quality check for formulae and data accuracy becomes almost impossible. I need help in making this less complex. e.g. is there a way that all cells that have a formula gets coloured coded so that I know which ones to check.

  2. #2
    Forum Expert Carim's Avatar
    Join Date
    04-07-2006
    Posts
    4,070
    Hi,

    1. Use a function to test if there is formula
    2. Create conditional formatting with this function

    Public Function IsFormula(rng As Range) 
      If rng.Count > 1 Then 
          IsFormula = CVErr(xlErrRef) 
      Else 
         IsFormula = rng.HasFormula 
      End If 
    End Function
    HTH
    Carim

+ 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