I have this, =IF(G8=0, "", F8/G8) so that I don't get #DIV/0! when boxes are blank. But I need the answer to round up to the next whole number ie 1.4 should show as 2. Suggestions please.
or this will leave a blank if either cell is empty:
=IF(OR(G8=0,F8=0),"", ROUNDUP(F8/G8,0))
As cortina said, error traps are also worth looking into (ISERROR is only one of them).
For a fantastic resource in Excel help see here: http://www.mrexcel.com/forum/index.php
Thousands of questions answered, although the search facility is, as a result tricky to use effectively.