Maybe
=IF(or(RN2=FALSE,RV2<>100),0,MAX(SK2,SL2,AX2))
In SO2=IF(RN2=FALSE,0,MAX(SK2,SL2,AX2))
But I want the formula to check...
If RV2=100, then also MAX(SK2,SL2,AX2) else 0
How to accomplish
Try...
=IF(OR(RN2,RV2=100),MAX(SK2,SL2,AX2),0)
I tried a 'similar' change in another cell but could not do?
The formula was: =IF(ACR2=FALSE,0,IF(ADI2=0,AT2,MIN(ADI2,AT2)))
I changed the formula to: =IF(OR(ACR2,ADQ2=100),IF(ADI2=0,AT2,MIN(ADI2,AT2))) to include BUT IF ADQ2=100.... but the answer is FALSE.
Please tell: What is the meaning of OR(RN2,....
i.e. formula checks for RN2=FALSE or TRUE?