A calculator that keeps a record of what you did. Every entry stays on the tape and stays editable — spot a typo from ten entries ago and fix that one line, and the total updates. No starting over, which is the failure that makes an ordinary calculator frustrating for anything longer than three numbers.
Calculator with Tape
LiveKeyboard works throughout: digits, + − * /, Enter to add, Esc to clear, Backspace to delete a character.
Why an editable tape matters
The flaw in every ordinary calculator is that it has no memory of what you did. Add forty receipts, get a total that looks wrong by about fifty, and your only option is to start again — and you will probably make a different mistake the second time.
| Situation | What the tape gives you |
|---|---|
| Totalling receipts | Every entry visible. If the total looks wrong, scan the list rather than re-entering forty numbers |
| Reconciling a statement | Label entries as you go — "rent", "invoice 204" — so the tape reads as a record rather than a column of digits |
| Catching a typo | Entered 500 instead of 50? Click that line, fix it, and the total corrects. No other online calculator does this |
| Showing your working | Print or export the tape as evidence of how a figure was reached. Accountants have used paper tape for this reason for a century |
The percent key does not do what you think
This causes more confusion than any other calculator behaviour, because two conventions exist and both are in wide use:
| You press | Desk calculator | Phone or scientific |
|---|---|---|
| 200 + 10 % | 220 — adds 10% of 200 | 200.1 — adds 0.1 |
| 200 − 10 % | 180 — subtracts 10% of 200 | 199.9 |
| 200 × 10 % | 20 — 10% of 200 | 20 — same |
Neither is wrong; they answer different questions. The desk convention treats % as "of the number I just entered", which is what you want when adding tax or applying a discount. This calculator uses the desk convention, because that is what the tape is for — and it writes the resolved amount onto the tape so there is no ambiguity about what happened.
Entering 200, then +, then 10 % writes two lines: 200 and + 20.00 (10% of 200). You can see the resolved figure, not just the percentage you typed — which matters when someone else reads the tape later.
Why 0.1 + 0.2 sometimes shows 0.30000000000000004
Not a bug in the calculator — a consequence of how every computer stores decimals. Binary floating point cannot represent 0.1 exactly, in the same way decimal cannot represent one third exactly. The tiny error becomes visible when two such numbers are added.
This calculator rounds results to twelve significant figures before display, which removes the artefact while keeping far more precision than any practical use requires. It matters that you know it exists: if you are writing code that handles money, never store currency as a floating point number — use integer cents, or a decimal library built for it.
Keyboard shortcuts
| Key | Action |
|---|---|
| 0–9 and . | Enter digits |
| + − * / | Set the operation for the next entry |
| Enter or = | Commit the entry to the tape |
| % | Treat the entry as a percentage of the running total |
| Backspace | Delete the last character |
| Escape | Clear the current entry |
The entry field holds focus, so you can work from a numeric keypad without touching the mouse — which is the whole point when you have a stack of receipts to get through.
Common mistakes
Frequently asked questions
Can I edit an entry after adding it?
Yes — click any amount on the tape, type the correct figure, and the running total updates immediately. This is the feature that separates a tape calculator from an ordinary one. Spot an error at entry forty and you fix one line instead of re-entering everything, which is where second mistakes come from.
Why does 200 + 10% give 220 rather than 200.1?
Because this uses the desk calculator convention, where % means "of the number you just entered". It is what you want for adding tax, applying a discount or calculating a tip. Phone and scientific calculators use the other convention, treating 10% simply as 0.1. Both are legitimate; the tape shows the resolved amount so there is no ambiguity about which happened.
Is my tape saved?
Only for as long as the tab is open. Nothing is transmitted to a server and nothing persists after you close it — which is deliberate, since a tape can contain figures from an invoice or a bank statement. Use Copy, Print or CSV to keep a record before you leave the page.
Can I label entries?
Yes. Click the grey field beside any amount and type a description — "rent", "invoice 204", "fuel". Labels appear in the printed tape and the CSV export, which turns a column of numbers into a record someone else can follow. This is the main reason accountants kept using paper tape long after computers arrived.
Does it follow order of operations?
No — it works sequentially, like an adding machine. Each entry applies to the running total in the order you enter it, so 2 + 3 × 4 gives 20 rather than 14. That is correct for a tape calculator and wrong for algebra. If you need operator precedence and parentheses, use the Scientific Calculator instead.
Why do results sometimes show a long string of decimals elsewhere?
Binary floating point cannot store decimals like 0.1 exactly, so 0.1 + 0.2 comes out as 0.30000000000000004 in most programming environments. This calculator rounds to twelve significant figures before displaying, which removes the artefact. If you write software that handles money, store it as integer cents rather than a floating point number.
Does the keyboard work?
Fully. Digits, the four operators, Enter to commit, Escape to clear and Backspace to delete. The entry field keeps focus so you can work from a numeric keypad without reaching for the mouse — which is the difference between pleasant and tedious when you have fifty receipts to process.
Can I export the tape?
Three ways: Copy puts it on the clipboard as formatted text, Print produces a clean sheet with a dated header, and CSV downloads a file that opens directly in Excel or Sheets with labels intact. All three include the running total and the source attribution.
Related calculators
See the full list of Math calculators, or try:
- Scientific Calculator — order of operations, trigonometry, logarithms
- Percentage Calculator — eight percentage modes with working shown
- Average Calculator — statistics from a list of numbers
- Bill Split Calculator — splitting a total across people
- Sales Tax Calculator — adding or extracting tax