I am having a strange problem, I have a column with this formula in each row respectively:
=IF(C6="";"";D6-LEN(B6))
It works great, if the cell next to it is empty, make it an empty cell, if not, show the calculated length. However, when I try to use conditional formatting to make it red when the length is greater than 5, it highlights the cells that are 'blank'(have a formula in but are displaying blank). Any ideas as to why this is happening would be greatly appreciated.
PS. I am currently using Open Office 4.0.1 and it seems to work fine, but when I send the document to a client(Excel 2010) it highlights the empty cells. I have tried clearing the conditional formatting and using Excels built in conditional for-matter and it does the exact same thing.
Thanks in advance, James.
Use this formula for conditional formatting (Tested in MS-OFFICE and not Open Office)
=AND(E1<>"",E1>5)
Note: Replace ,
with ;
in your formula
Screenshot
EDIT
TRIED AND TESTED IN Open Office 4.1.3.2