Is there a simple way to do this, via macro or otherwise? By calculated field I mean a field that is computed from other fields, versus raw entered values. By highlight I mean colored differently. I need this to better understand a large spreadsheet from a client.
|
|
To do it manually, press the F5 key to bring up the GoTo dialog. Click the Special Cells button. On the next screen, select Formulas (it's an option on the right). Excel will select all of the cells that match. Now it's just a matter of applying formatting. |
||||
|
|
|
There was a previous thread on this subject: http://stackoverflow.com/questions/61432/tool-for-deciphering-spreadsheets/61448 |
||
|
|
|
|
Excel has a built in feature of "Trace Dependents" (which shows arrows to show you the calculated cells) Select the range containing your data. |
||
|
|
|
|
The code below should cycle through each sheet, highlighting every cells that starts with an '=' and colors it the desired color (currently colour 36 which is Light Yellow).
End Sub It will also stop after 40 consecutive blank cells (to avoid processing all of a mostly blank sheet). Hope this helps. |
||||
|
|
|
I'm going to assume you're only talking about cell formulas rather than VBA calculations here, since you could set the cell colour in your VBA procedure if you're doing it that way. The way to do this is to check the cell for a formula after you're done with it, and change it's colour at that point. The relevant event here is Change, and the cell's HasFormula property will tell you whether the cell is a literal value, or calculated from a formula:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.HasFormula Then
Target.Interior.Color = vbRed
Else
' remove background colour entirely (i.e. No Fill)
Target.Interior.ColorIndex = xlColorIndexNone
End If
End Sub
|
|||
|
|
|
|
Simple solution: Ctrl - ` (the key just above Tab) |
||
|
|
|
You can use the Interior.ColorIndex property to change the active cell's background color:
You may also apply it to a range:
This applies to Excel 2003, I haven't used the latest version but I doubt this has changed. You can usually record a macro and then look at the generated code to see how something is done. |
|||
|
|
