Sub KoppelingenMarkeren()
Dim c As Range
For Each c In Selection
If c.HasFormula And c.Formula Like "*[[]*" Then
c.Interior.ColorIndex = 3
c.Font.ColorIndex = 6
End If
Next
End Sub
Sub KoppelingenNormaal()
Dim c As Range
For Each c In Selection
If c.HasFormula And c.Formula Like "*[[]*" Then
c.Interior.ColorIndex = xlNone
c.Font.ColorIndex = xlAutomatic
End If
Next
End Sub
Sub FormulesMarkeren()
Dim c As Range
For Each c In Selection
If c.HasFormula Then
c.Interior.ColorIndex = 3
c.Font.ColorIndex = 6
End If
Next
End Sub
Sub FormulesNormaal()
Dim c As Range
For Each c In Selection
If c.HasFormula Then
c.Interior.ColorIndex = xlNone
c.Font.ColorIndex = xlAutomatic
End If
Next
End Sub