View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Spiky Spiky is offline
external usenet poster
 
Posts: 622
Default If formula with two conditions to meet

On Aug 28, 10:31 am, Carolina
wrote:
I have the following scenario:

If the value in cell Z5 is equal or greater than "0" the person gets $700
AND
if in addition field value in cell AB5 reflects a number equal or greater
than "3" then person gets $700 + 300 for a total of $1000

How should I compose the IF formula on cell O5?

Any help with be much appreciated.

Thanks.
Carolina


IF(AB5=3,1000,IF(AB5=0,700,0))