Hi George
It is possible but only with VBA.
Right click on your sheet name tab and select "View Code", paste this code over what you see.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Target.HasFormula = True Then
If Target.Formula Like ("=*!*") Then
Target.Interior.ColorIndex = 3
End If
End If
End Sub
Push Alt+Q and save.
Dave
OzGrid Business Applications
Thanks, but I am very new to this. How do I get it to run?
George, it will run automatically each time you enter a formula that refrences another sheet.
Your formuals that already have other sheets in their refrence will need to be re-entered to change colour.
You should be able to achieve this by Usung Edit>Replace and replace all: = with =
This should force your formula cells to be re-entered
Dave
OzGrid Business Applications
Thanks a bunch. This saved a whole lotta headaches.
I even changed the color myself in the script.
(a big step for a beginner).
Now maybe a tougher question.
Can I color the cells which will get used in a
formula on another sheet?
Sort of color coding the auditing tools.
Red is if a formula references another sheet (like you already helped with)
Blue is if a cell gets used on another sheet
Green if both.
Is this possible or am I trying to bite off more
than I can chew?
Thanks again for the original help.