Multiple vehicles
Travelling as a convoy? Add every car with its own mileage and fuel price — the fuel bill sums across vehicles and still splits per person.
Features
Travelling as a convoy? Add every car with its own mileage and fuel price — the fuel bill sums across vehicles and still splits per person.
Every input is encoded in the URL. Copy one link and your whole group opens the exact same pre-filled budget. No accounts, no server.
An interactive donut and per-vehicle bars show exactly where the money goes — fuel vs daily expenses vs tolls and parking.
Toggle between ₹, $, €, £, ¥ and more. Display-only, so your numbers stay exactly as you entered them.
Enter the one-way distance and double it instantly. Costs per km, per day and per traveller update live as you type.
One click prints a clean trip summary — or saves it as a PDF to drop straight into the group chat.
The math
Fuel is computed per vehicle from distance, mileage and local fuel price, then pooled with daily expenses and tolls. The total divides evenly across travellers — so nobody argues at the petrol pump.
# per vehicle
fuel[i] = (distance / mileage[i]) × price[i]
# whole trip
fuel_total = Σ fuel[i]
stay_food = days × daily_expense
extras = tolls + parking
# the number that matters
per_traveller = (fuel_total + stay_food + extras) / n