In Excel: use =(A2+B2)/2 for the midpoint of two numbers; for a coordinate pair, find the midpoint of the x-values and the y-values separately, e.g. =(A2+B2)/2 for x and =(C2+D2)/2 for y.
On this page7
For two plain numbers, put them in two cells and use =(A2+B2)/2.
For two dates, the same formula works: =(A2+B2)/2 returns the midpoint date because Excel stores dates as serial numbers.
For coordinate pairs, average the x-values in one formula and the y-values in a separate formula — never average all four numbers together.
Format the result to match the input (Currency, Date, or Number) since the raw formula returns an unformatted number.
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
What this does
A midpoint is the value exactly halfway between two numbers — a simple average of exactly two inputs. It shows up in two common contexts: halfway between two scalar values (a price range, a date range, a score range) and the midpoint of two (x, y) coordinates on a chart or a grid, which needs the two coordinates averaged independently, not the four numbers averaged together. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. Treat “midpoint formula excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected formula shows up while it is still harmless. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That turns a calculation you can defend to a CFO or an auditor into a method you can reuse, explain, and defend when the workbook leaves your screen.
A worked example
A product's price range is $40 (A2) to $60 (B2); =(A2+B2)/2 returns $50, the midpoint price. For coordinates, point 1 is (2, 8) in A2:B2 and point 2 is (10, 4) in A3:B3: the midpoint x is =(A2+A3)/2 = 6, and the midpoint y is =(B2+B3)/2 = 6, giving the midpoint (6, 6) — never average all four numbers together, since x and y are different measurements. Midpoints come up in pricing bands, date-range planning, and geometry/chart work where you need the exact center between two known points rather than a statistical average of many. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.
In Google Sheets
Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Keep this page bookmarked for the next time the same question comes up. Better still, repeat the steps once in your own workbook — doing it yourself is what turns a copied answer into something you remember. If you take one thing from this page on “midpoint formula excel”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.
Common mistakes
- Averaging all four coordinate numbers in one
AVERAGE()call instead of pairing x with x and y with y. - Using the midpoint formula on a date range and forgetting to reformat the serial-number result as a date.
- Confusing midpoint (halfway between two specific values) with average/mean (the center of an entire list) —
AVERAGE(A2:A100)is not a midpoint unless the list has exactly two entries. - Applying the midpoint formula to an unordered pair without checking which is smaller — the formula works either way, but a chart or downstream logic that assumes
A2<B2will not.
Frequently asked questions
What is the Excel formula for a midpoint?
=(A2+B2)/2 for two values. For two (x, y) coordinates, compute the x-midpoint and y-midpoint separately with two such formulas.
Is midpoint the same as average?
Only when there are exactly two values. AVERAGE() over a longer list gives the mean of the whole set, not a midpoint between two specific points.
Does this formula work in Google Sheets?
Yes, identically — =(A2+B2)/2 returns the midpoint in Google Sheets exactly as it does in Excel, including for dates, since Sheets also stores dates as serial numbers.