Reputation: 11
I am trying to write a formula that says:
IF C2 is less than C3, 1 load
, or
IF C2 is greater than C3 but less than or equal to C3*2, 2 loads
, or
IF C2 is greater than C3*2 but less than or equal to C3*3, 3 loads
.
Upvotes: 0
Views: 75
Reputation: 3290
that can be simply written as
=CEILING(C2,C3)/C3&" Loads"
you round the number up to the nearest full load and then you divide it by the load size so it will always work even past 3 loads
Upvotes: 2