FormulaCraft

How to split a bill evenly in Excel and Google Sheets

Topic:Finance basics
Excel & Google Sheets
=ROUND(A2*(1+B2)/C2,2)

Verified example

Computed by a real spreadsheet engine on the sample data below.

Bill TotalTip RatePeopleEach Pays
1200.184
850.23
2000.155
600.182

=ROUND(A2*(1+B2)/C2,2)35.4

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

Step by step

  1. 1Column A = Total Bill (before tip), Column B = Tip Rate (e.g., 0.18 for 18%), Column C = Number of People.
  2. 2In D2 enter =ROUND(A2*(1+B2)/C2,2) to get each person's share including tip.
  3. 3To show the tip amount separately, use =ROUND(A2*B2/C2,2).
  4. 4To show total per person without tip: =ROUND(A2/C2,2).

Tips

Need it for your exact data?

Describe your columns in plain English and get the precise formula for your sheet, with the right Excel or Sheets syntax.

Frequently asked

How do I handle unequal splits?

Give each person a 'share count' in column D (e.g., 1, 2, 0.5). Each person pays: =A2*(1+B2)*D2/SUM($D$2:$D$6).

How do I add tax separately from tip?

Add a Tax Rate column (E): =ROUND(A2*(1+B2+E2)/C2,2).

More on Finance basics

See all →

Formulas used

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: