Forum Discussion
chofbauer
Mar 05, 2019Copper Contributor
IF Function
Good day! I was wondering if anyone knew how to do an IF function for the attached file. I am trying to get the amount in column D to be "950" if column B or C has a 1 in it. If B or C ha...
- Mar 06, 2019
More exactly
=IF(OR(B2=1,C2=1),950,S2/(B2+C2))
Heris_Pamuntjar
Mar 05, 2019Copper Contributor
( I think ) D2 : =IF(AND(B2=1,C2=1),950,S2/(B2+C2))
SergeiBaklan
Mar 06, 2019Diamond Contributor
More exactly
=IF(OR(B2=1,C2=1),950,S2/(B2+C2))
- chofbauerMar 06, 2019Copper Contributor
Thank you very much! This worked perfectly!!
- SergeiBaklanMar 06, 2019Diamond Contributor
You are welcome