The current formula I'm using is as follows:
Columns("D:D").Select
Range(Selection, Selection.End(xlToRight)).Select
Selection.FormatConditions.Add Type:=xlExpression, Formula1:= _
"=$D1='General Profiling'!$B$6"
Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
With Selection.FormatConditions(1).Interior
.PatternColorIndex = xlAutomatic
.Color = 65535
.TintAndShade = 0
End With
Selection.FormatConditions(1).StopIfTrue = True
However at times, there may be values in C6, D6, etc which I also wish for the conditional formatting to pick up and highlight.
Is there a way to identify whether a value has been put in between C2 to C100 and then highlight these values on a different spreadsheet?