A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
I think the Object Model for FormatConditions is broken - I get strange results when I test setting the AppliesTo property with something like this:
Dim fc As FormatCondition
Set fc = Range("B1").FormatConditions(1)
fc.AppliesTo = Range("$A$1:$B$1")
(it actually deleted the value in a cell!).
So I think you'll want to clear the CF and reapply it to the desired range from scratch.
Also, be sure to have the correct cell Active (selected) when you apply CF (either in code or manually).
Cheers
Rich