arrow_back_ios

Our rental price for one scooter is $1000 per hour, but the price for each additional scooter drops to $800 per hour. How can we set this up?

Suppose you already have a resource set up for hourly scooter rentals. The hourly rate is $1000.
To offer a discount when renting multiple scooters, create a discount for renting more than one scooter. Add a pricing component.
Enter a name for the component. Then, insert the parameters for duration — number of hours [STEPS] and for shares — number of scooters [P1].
Enter the formula. The $200 discount is multiplied by the number of scooters above one. This result is then multiplied by the [STEPS] parameter — the number of reserved hours.
In the formula, use the Max function. This function returns the greater of two numbers. As a result, the expression [P] - 1 will never be less than zero. To add a function, click the Insert function button and select Max from the list.
-200 * Max(0, [P1] - 1) * [STEPS]
Let's test it. We'll reserve 4 scooters for 3 hours.
The formula calculation: -200 * (4 - 1) * 3 = $1800.
See this example in action: