Forum Discussion

chofbauer's avatar
chofbauer
Copper Contributor
Mar 05, 2019
Solved

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.

    • SergeiBaklan's avatar
      SergeiBaklan
      MVP

      More exactly

      =IF(OR(B2=1,C2=1),950,S2/(B2+C2))
      • chofbauer's avatar
        chofbauer
        Copper Contributor

        Thank you very much!  This worked perfectly!! 

  • Twifoo's avatar
    Twifoo
    Silver Contributor
    From 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))

Resources