Unsolved Logical Function
Unsolved Logical Function
=if(condition ,formula1,formual2
simple if
names Adhaar card Pan card Voter Card passport status formula
deepa yes yes yes eligible =IF(AND(B43="yes",C43
roopa yes no yes not eligible =IF(AND(B44="yes",C44
anu no no no not eligible =IF(AND(B45="yes",C45
keerthi yes no yes not eligible =IF(AND(B46="yes",C46
leela yes yes yes eligible =IF(AND(B47="yes",C47
example for if or
names Adhar card Pan card Voter Card passport status formula
deepa yes yes yes ELIGIBLE =IF(OR(B52="YES",C52=
roopa yes no yes ELIGIBLE =IF(OR(B53="YES",C53=
anu no no no NOTELIGIBLE =IF(OR(B54="YES",C54=
keerthi no no yes ELIGIBLE =IF(OR(B55="YES",C55=
leela yes yes yes ELIGIBLE =IF(OR(B56="YES",C56=
>90,A
example for nested if(IFS): for single cell to apply multiple condition >80,B,
>60>C,>50>D<50<E
names avg grade formula
deepa 56.34 D 0 =IF(B61>=80,"B",IF(B61>=60,"C",IF(B61<4
reena 90.53 A
teena 77.32 C
keerthi 87.22 B
leela 21.32 E
hema 66.1 C
=IF(AND(B25>35,C25<35,D25>35),"pass","fail")
=IF(AND(B26>35,C26<35,D26>35),"pass","fail")
=IF(AND(B27>35,C27<35,D27>35),"pass","fail")
=IF(AND(B28>35,C28<35,D28>35),"pass","fail")
=IF(OR(B35<25,C35<25,D35>25),"pass","fail")
=IF(OR(B36<25,C36<25,D36>25),"pass","fail")
=IF(OR(B37<25,C37<25,D37>25),"pass","fail")
=IF(OR(B38<25,C38<25,D38>25),"pass","fail")
=IF(AND(B43="yes",C43="yes",D43="yes"),"eligible","not eligible")
=IF(AND(B44="yes",C44="yes",D44="yes"),"eligible","not eligible")
=IF(AND(B45="yes",C45="yes",D45="yes"),"eligible","not eligible")
=IF(AND(B46="yes",C46="yes",D46="yes"),"eligible","not eligible")
=IF(AND(B47="yes",C47="yes",D47="yes"),"eligible","not eligible")
=IF(OR(B52="YES",C52="YES",D52="YES"),"ELIGIBLE","NOTELIGIBLE")
=IF(OR(B53="YES",C53="YES",D53="YES"),"ELIGIBLE","NOTELIGIBLE")
=IF(OR(B54="YES",C54="YES",D54="YES"),"ELIGIBLE","NOTELIGIBLE")
=IF(OR(B55="YES",C55="YES",D55="YES"),"ELIGIBLE","NOTELIGIBLE")
=IF(OR(B56="YES",C56="YES",D56="YES"),"ELIGIBLE","NOTELIGIBLE")
IF(B61>=60,"C",IF(B61<40,"D")))
on),"false","true")