Constructing an if statement

Hello Stephane,

I need your kind support to prepare the following quesiton in XLSForm.

=IF(AND(Q2=>“6”,Q3=“2”),“Eligible”,“Not Eligible”)

Thank you very much.
Rahmat

Hi @rahmat
You should use the following instead

if(((${Q2}=>6) and (${Q3}=2)), “Eligible”, “Not Eligible”)

Regards,
Stephane

2 Likes

Thank you very much

1 Like