OR function

S

SKCDPH-JHS

Given that column E lists an "Available Amount", and column F lists an
"Average Amount", I want the following result in column G:

IF "Available Amount"=0, then "Complete", else, "Available Amount"/"Average
Amount" OR IF "Average Amount"=0, then "Not started", else, "Available
Amount"/"Average Amount"

How do I write this formula?
 
K

Ken Puls

Hi there,

If I've read everything right, it should be:

=IF(E1=0,"Complete",IF(OR(E1/F1=0,F1=0),"Not started",E1/F1))

There is an issue if column F is blank though, resulting from the first
part of the OR clause. (Divides by zero.)

Ken Puls, CMA - Microsoft MVP (Excel)
www.excelguru.ca
 
Top