Quote:
Originally Posted by maxliv
I am trying to figure out a formula for mileage. Anything under 22 miles is $25.30 and anything over 22 miles is multiplied by $1.50 plus $25.30. How do you create a formula for this?
|
=if(A1<=22;25.30;(A1-22)*1.5+25.30)
/Møller