No value entered

  • Thread starter Thread starter WannaKooky
  • Start date Start date
W

WannaKooky

I written a gradebook type of sheet.
However, it's calculating cells with no data as zero (0) and I want th
formula to avoid calculating a cell unless it has data.
Example

(for G5) =IF(G4=0,4,IF(G4=1,2,IF(G4>1,0)))

I want it where only G4 is calculated when it has a value entered.

Thanks
 
Hello,
Assuming that you wish G5 to display no information if your othe
conditions are not true you can try this.

=IF(G4="","",IF(G4=0,4,IF(G4=1,2,IF(G4>1,0))))

Regards,

Steve
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top