You are on page 1of 1

Logical function

==================
=if(condition,whatiftrue, whatiffalse)
if( j2 > 1000 then
give discount j2*A2
else
no discount
)
=if(j2>1000,"DA","DNA")
=if(j2>1000,1,0)
=if(j2>1000,j2*$a$2,0)

You might also like