I’ve been using the following formula to calculate margin and do the rounding to the closest .x9
=ROUND(($A1/0.7),1)-0.01
Now there are certain price points that I want to hit (or avoid) so I’m trying to create a formula to only hit these price points. The formula would do the following,
Retails ending in …
x.00 to x.10 would round down to .99
x.11 to x.30 would round to x.29
x.31 to x.50 would round to x.49
x.51 to x.80 would round to x.79
x.81 to x.99 would round to x.99
If I have to calculate the margin separately, that would be OK, but I was trying to get it all done in one cell.
=ROUND(($A1/0.7),1)-0.01
Now there are certain price points that I want to hit (or avoid) so I’m trying to create a formula to only hit these price points. The formula would do the following,
Retails ending in …
x.00 to x.10 would round down to .99
x.11 to x.30 would round to x.29
x.31 to x.50 would round to x.49
x.51 to x.80 would round to x.79
x.81 to x.99 would round to x.99
If I have to calculate the margin separately, that would be OK, but I was trying to get it all done in one cell.