This should probably be easy, but I am struggling with it...

What I have is an inventory template that needs to calculate the number of packs to order, based on a usage value compared to a pack size value. So on a single sheet i need to compare column F to Column C and return values based on F meeting or exceeding multiples of C.

If F < C then return zero.
If F >= C then return 1.
If F >= C*2 then return 2.

This pattern should continue up to multiples of 10.

Is there something dynamic to do this, or can I nest a whole string of calculations together, or what?

Thanks.