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 has any other number, then i need the formula to calculate the pounds using those numbers.
B and C are the number of bins received and F and G are the number of bins remaining in inventory, but i need to put a weight to those bins in inventory. Any help is greatly appreciated.
More exactly
=IF(OR(B2=1,C2=1),950,S2/(B2+C2))
- Heris_PamuntjarCopper Contributor
( I think ) D2 : =IF(AND(B2=1,C2=1),950,S2/(B2+C2))
More exactly
=IF(OR(B2=1,C2=1),950,S2/(B2+C2))
- chofbauerCopper Contributor
Thank you very much! This worked perfectly!!
- TwifooSilver ContributorFrom what I understand, you want Column D to return:
950, if the values of Column B and C are 0; otherwise,
Column S divided by the sum of Column B and C.
The formula in D2 is:
=IF(AND(B2=0,C2=0),
950,
S2/(B2+C2))
The Boolean version is:
=IF((B2=0)*(C2=0),
950,
S2/(B2+C2))