Link to home
Start Free TrialLog in
Avatar of vegas86
vegas86

asked on

Conditional Format Help

Hello,

I am having trouble with my conditional formatting. I currently have the following rule
=(G8>H8)*(LEN(G8)<>0)

It works as long as G8 is blank. However it won’t work because I have an index match formula in G8 which is

=IF(ISERROR(INDEX(‘example'!$A$5:$U$97,$A8,G$2))," ",INDEX('example'!$A$5:$U$97,$A8,G$2))

So even though G8 is blank the conditional formatting is still picking up the formula as a value, how do I work around this??
Avatar of SiddharthRout
SiddharthRout
Flag of India image

Try this

=(G8>H8)*(G8<>0)

instead of

=(G8>H8)*(LEN(G8)<>0)

Sid
Avatar of vegas86
vegas86

ASKER

Thanks for the suggestion Sid but it still isn't working, I am getting the same result.
ASKER CERTIFIED SOLUTION
Avatar of SiddharthRout
SiddharthRout
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of vegas86

ASKER

PERFECT!!, thank you so much for your help Sid!
You are welcome :)

Sid