What would be the syntax for "IF" Function to get a result of Pass or Fail if Passing criteria is 40% and above. Further percentage of marks is available in Cell A1? |
=IF(A1>=40%, "PASS", "FAIL") =IF(A1<40,"PASS", "FAIL") =IF(A1>=40, "FAIL","PASS") =IF(A1=40,"PASS", "FAIL") |
=IF(A1>=40%, "PASS", "FAIL") |
The correct answer is option 1- =IF(A1>=40%, "PASS", "FAIL"). The correct syntax is =IF(A1>=40%, "PASS", "FAIL").
|