vote up 1 vote down star

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.

flag

77% accept rate

7 Answers

vote up 2 vote down check

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.

link|flag
this works and is simple... the macro-based solution suggested by someone else just didn't work – DSO Mar 28 at 6:40
And I only get ONE point, while the non-working solution gets more? – Stan Scott Apr 7 at 16:10
vote up 0 vote down

There was a previous thread on this subject: http://stackoverflow.com/questions/61432/tool-for-deciphering-spreadsheets/61448

link|flag
vote up 2 vote down

Excel has a built in feature of "Trace Dependents" (which shows arrows to show you the calculated cells)

Select the range containing your data.
Excel 2007 -> Formulas -> Trace Dependents

link|flag
vote up 2 vote down

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).

Sub HighLightFormulas()
Dim objSheet As Worksheet
Dim strOriginalSheet As String
Dim intMaxBlankCells As Integer
Dim intBlankColumns As Integer
Dim intBlankRows As Integer
Dim intCurrentColumn As Integer
Dim intCurrentRow As Long

intMaxBlankCells = 40
strOriginalSheet = ActiveSheet.Name

For Each objSheet In Worksheets
    intBlankRows = 0
    intCurrentRow = 1
    intCurrentColumn = 1

    Do While intCurrentRow <= 65536 And intBlankRows <= intMaxBlankCells
        intBlankColumns = 0
        intCurrentColumn = 1

        Do While intCurrentColumn <= 256 And intBlankColumns <= intMaxBlankCells
          If Left(objSheet.Cells(intCurrentRow, intCurrentColumn).Formula, 1) = '=' Then
            objSheet.Cells(intCurrentRow, intCurrentColumn).Interior.ColorIndex = 36
          End If
          intCurrentColumn = intCurrentColumn + 1
        Loop

        If intCurrentColumn = intBlankColumns Then
            intBlankRows = intBlankRows + 1
        Else
            intBlankRows = 0
        End If
        intCurrentRow = intCurrentRow + 1
    Loop
Next objSheet
Worksheets(strOriginalSheet).Activate

Call MsgBox("The Highlighting process has completed", vbOKOnly, "Process Complete")

End Sub

It will also stop after 40 consecutive blank cells (to avoid processing all of a mostly blank sheet).

Hope this helps.

link|flag
Excel VBA provides a property for formulas, HasFormula, that you could use instead of checking for the = character. Otherwise, this seems good for setting the colour on pre-existing fields. My answer only covers those you change after the code is in place. – AgentConundrum Mar 23 at 6:03
sorry voted up too quickly... this sounds like what i need but there was a compile error, and when I fixed it and ran it, it locked up excel. didn't really have time to muck with it, so i gave up, but someone just gave a non-programmatic solution that just worked – DSO Mar 28 at 6:41
vote up 3 vote down

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
link|flag
vote up 0 vote down

Simple solution: Ctrl - ` (the key just above Tab)

link|flag
This will only change the view to show formulas. The question asked to change the background colour of these fields. – AgentConundrum Mar 23 at 6:01
vote up 0 vote down

You can use the Interior.ColorIndex property to change the active cell's background color:

ActiveCell.Interior.ColorIndex = 36

You may also apply it to a range:

Range("A1:A5").Interior.Color = RGB(200,160,35)

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.