Forum Discussion
im_tanmaya
Jun 03, 2021Copper Contributor
Need Help on An Excel Formula
Hi All, Pls Help Me Out In Correcting The Following Formula. =IF(OR(C28=C13,C14),D14),IF(OR(C28=C15,C16),D16),IF(OR(C28=C19,C20),D20),IF(OR(C28=C23,C24),D24),D26) Regards
- Jun 03, 2021
Perhaps
=IF(OR(C28=C13,C28=C14),D14, IF(OR(C28=C15,C28=C16),D16, IF(OR(C28=C19,C28=C20),D20, IF(OR(C28=C23,C28=C24),D24, D26 ))))
mtarler
Jun 03, 2021Silver Contributor
im_tanmaya I'm assuming this list of IF statement are meant to be nesting in that if the condition is FALSE then go on to the next IF statement. I recommend using IFS instead but both versions are below:
=IFS(OR(C28=C13,C14),D14,OR(C28=C15,C16),D16,OR(C28=C19,C20),D20,OR(C28=C23,C24),D24,1,D26)=IF(OR(C28=C13,C14),D14,IF(OR(C28=C15,C16),D16,IF(OR(C28=C19,C20),D20,IF(OR(C28=C23,C24),D24,D26))))
- im_tanmayaJun 04, 2021Copper ContributorHi Mr matler, good evening!
Thank you so much for your quick response. Both of the formulas returned value as follows.
For C28=C13 it returned D14
but for C28=C14, it returned D26
Thank you again.