Forum Discussion
Jim Jenkins
Mar 03, 2017Copper Contributor
Formula help please
I have the following formula and am getting the #Value error ... =IF(OR(E34="--",E34=0,E32="--",E32=0),"--",ROUND(E32/-E34,2)&":1") when there are values in appropriate Rows it calulates correctly,...
- Mar 03, 2017
Hi Jim
It works for me unless I press space bar to clear the number, in which case I get the #Value errorYou could do this
=IF(OR(E34="--",N(E34)=0,E32="--",N(E32)=0),"--",ROUND(E32/-E34,2)&":1")
Wyn Hopkins
Mar 03, 2017MVP
Hi Jim
It works for me unless I press space bar to clear the number, in which case I get the #Value error
You could do this
=IF(OR(E34="--",N(E34)=0,E32="--",N(E32)=0),"--",ROUND(E32/-E34,2)&":1")
Jim Jenkins
Mar 04, 2017Copper Contributor
Thanks Wyn ... works perfectly .... much appreciated.
- Wyn HopkinsMar 04, 2017MVPno problem, glad to help