A quickie...
Anyone know of a way to capture the Activecell's conditional format properties without actually evaluating the condition in your code ?
For example... I have a range of cells with two conditions as follows:
Condition1 if the following is true =OR((P17/O17)*100<$FD$4,P17<$FE$4) then cell interior colorindex = 35
Condition2 if the following is true =OR((P17/O17)*100<$FD$5,P17<$FE$5) then cell interior colorindex = 45
else just leave the formats alone...
Let's say I select a cell with "Green" interior as a result of the conditional formattin & type the following in the immediate window
I get the answer 2 (i.e. white background) - where I would expect 35 - which suggests that you cannot pick up the volatile Interior.ColorIndex property set by Conditional ormatting in your code...
So I seem to be faced with testing the formatconditions in order to know which format the cell is taking... unless anyone else knows how to capture it...