Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel 2010 - Multiple 'if' formula? 1

Status
Not open for further replies.

dsmith910

Technical User
Jan 16, 2003
127
GB
Hi

Is it possible to put more than one 'if' factor in one formula. My current formula says =IF(J84=0,"due",0) but I also want the cell to return zero if cell G84=0.
 
You can nest functions, or use OR or AND functions to combine logic. As a guess, I'd say this does what you want:

=IF(G84=0,0,IF(J84=0,"due",0))


Cheers, Glenn.

Beauty is in the eye of the beerholder.
 
Brilliant - that's exactly what I needed - works a treat!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top