SOLVED

if function help needed

Copper Contributor

Hi All, 

 

I hope everyone in the forum is safe and fine.

 

Need help with multiple if conditions. Please see the attachment 

Please note I am using office 2016 

 

 

please help this is very 

1 Reply
best response confirmed by rakeshtalwar (Copper Contributor)
Solution

@rakeshtalwar 

 

To put multiple conditions, use AND function , similarly there is one OR function also , pls. try to learn about these how these functions work using Help of EXCEL or other internet sources..

Also, you can use an IF inside another IF too..

So, for your present case , here is how you would apply it :-

 

=IF(AND(C2=0,D2=0),"Please Choose 1",IF(AND(C2>0,D2=0),"Nestila Lite",IF(AND(C2=0,D2>0),"Nestila ECO",IF(AND(C2>0,D2>0),"ECO Lite",""))))

 

1 best response

Accepted Solutions
best response confirmed by rakeshtalwar (Copper Contributor)
Solution

@rakeshtalwar 

 

To put multiple conditions, use AND function , similarly there is one OR function also , pls. try to learn about these how these functions work using Help of EXCEL or other internet sources..

Also, you can use an IF inside another IF too..

So, for your present case , here is how you would apply it :-

 

=IF(AND(C2=0,D2=0),"Please Choose 1",IF(AND(C2>0,D2=0),"Nestila Lite",IF(AND(C2=0,D2>0),"Nestila ECO",IF(AND(C2>0,D2>0),"ECO Lite",""))))

 

View solution in original post