R
RayD
Hello everyone,
What is wrong with my formula??
=IF(H6,J6>1,"")
Thanks
What is wrong with my formula??
=IF(H6,J6>1,"")
Thanks
Your formula is not structured properly.
It says........IF, "there is any value in cell H6", THEN "cell J6 is greater
than 1", OTHERWISE "make the cell blank"...........
If you post back with a TEXT version of what you actually want, someone will
give you a formula.
Vaya con Dios,
Chuck, CABGx3
Try this:
=IF(H6,H6,IF(J6,J6,""))
If by some quirk, both cells contain numbers, then H6 takes precedence.
Ray,
The #Value! error would suggest that you have text in the cell or that it is
formatted as text. Try re-formatting the cells and re-entering the data or
change the formula to:
IF(H6<>"",H6,IF(J6<>"",J6,""))
Ray,
The #Value! error would suggest that you have text in the cell or that it is
formatted as text. Try re-formatting the cells and re-entering the data or
change the formula to:
IF(H6<>"",H6,IF(J6<>"",J6,""))
Since one of your earlier posts mentioned that now "all formulas work", I'm
assuming that you corrected any formatting discrepancies that you might have
had before, so ... I repeat my original suggestion, with a revision to meet
your latest request:
=IF(H6,H6/J2,IF(J6,J6/J2,""))
Of course, you'll need J2 to be populated, or get a #DIV/0! error!