Forum Discussion

Naaz2006's avatar
Naaz2006
Copper Contributor
Mar 16, 2022
Solved

Assistance with nested IF

Good Evening   I need some assistance.  I have a column with numbers and need to do the following calculation:  IF b1 > 100 allocate 3 and for every additional 150 beds i must add 1 to the 3.  If ...
  • bosinander's avatar
    Mar 16, 2022

    Hello Naaz2006 

    Maybe like this;

    If less than 100, use zero. Otherwise, 3 plus one for each the number above 100 that is fully 150.

    =IF(B2:B11<100;0;3+INT((B2:B11-100)/150))