If you want a calculator percentage app that doesn’t make you translate everything into decimals first, this post is the practical tour of how Notes Calculator reads percent expressions. Every example below is a line you can paste into the app and see resolve immediately — no formula gymnastics, no * 0.15, no spreadsheets.
Why a Calculator Percentage App Should Read Like English
Most calculators force you to think in two steps: write the math, then convert it to something the machine accepts. Percentages are where that gap hurts the most. You want to type “200 plus 15%” and get the answer; instead you end up typing 200 * 1.15 and second-guessing whether tax is on the subtotal or the rounded price.
Notes Calculator goes the other way. The parser was built so that the way you say a percentage out loud is also the way you type it. That’s the whole shape of the feature: fewer translations, fewer mistakes, and a result on every line of your note as you go.
The Six Percentage Idioms You’ll Actually Use
There are six percentage shapes that cover almost everything real-world: a slice of a number, addition or subtraction of a percent, the “on / off” prepositions for taxes and discounts, the reverse-percent question, the percent change between two numbers, and chaining one result into the next. All six work as you’d expect.
// 1. Percentage of a number
25% of 200
// 2. Add or subtract a percentage
200 + 15%
200 - 15%
// 3. Percent on / off
10% on 200
10% off 200
// 4. Reverse: what percent off was applied?
180 is what % off 200
// 5. Percent change between two values
50 to 75 as %
// 6. Chain with `previous`
500 - 20%
previous + 8%
The last one is worth a beat. After you write 500 - 20%, the next line can refer to that result with previous — useful when you’re stacking a discount and a tax and don’t want to invent a variable for the in-between value. The full grammar is in the Notes Calculator docs if you want the formal reference.
Variables Make Percentage Math Reusable
Where a calculator percentage app earns its keep is when the same percentage shows up three times in a note. You set a variable once and the rest of the note follows. Multi-word names are allowed — write hourly rate, not hourly_rate — so the note stays readable.
# Freelance invoice
hourly rate = 85
hours = 32
subtotal = hourly rate * hours
// Add tax
tax rate = 21%
tax = subtotal * tax rate
total = subtotal + tax
Two things to notice. First, tax rate = 21% stores a percentage as a value — no need to write 0.21. Second, subtotal * tax rate reads like a sentence and produces the right number. You’re not writing a formula; you’re writing the note you’d hand a colleague.
Try the calculator percentage app in your browser — free
Tips, Discounts, and Taxes in One Note
Three of the most common percentage scenarios — tipping, discounting, and applying tax — collapse into a few lines. If you’ve ever needed a focused walk-through on each of these, the percentage calculator post covers the math from first principles, and the tip calculator and discount calculator posts show the same patterns applied to bills and shopping.
# Dinner with friends
bill = 124
tip = bill + 18%
people = 4
per person = tip / people
# Sale price after stacked discounts
list price = 240
after coupon = list price - 20%
final = after coupon - 10%
# Receipt with tax
subtotal = 89.50
total = subtotal + 9.5%
In the discount example, note that stacking -20% then -10% is not the same as -30% — the second discount is taken on the already-reduced price. Notes Calculator does this correctly because each line is evaluated against the previous one, not against the original list price.
Reverse Percentages and Percent Change
Two questions come up constantly and most calculators force you to invert the formula yourself: “what percent off was applied?” and “what’s the percent change between these two numbers?” Notes Calculator answers both with prose.
// What percent off was the sale?
sale = 180
original = 200
sale is what % off original
// What's the percent change?
last month = 4200
this month = 4830
last month to this month as %
The phrasing is intentional. is what % of and is what % off are both supported — the first asks for the ratio, the second asks for the discount that was applied. to … as % gives you the percent change, which is the right shape for revenue, weight, prices, or any before-and-after pair.
Comments, Headings, and Honest Limits
A few small notes that come up the moment you start writing real expressions:
//starts an inline comment. Anything after it is ignored by the parser but stays in the note for you.#at the start of a line is a heading. It’s a visual divider, not a calculation.=is variable assignment only. Do not writeresult = 200 + 15% = 230— the parser treats=as “store the value on the right into the name on the left,” and the second=is a syntax error. The result column on the right shows the answer; you don’t write it back into the line.
That last rule is the one new users trip on most often. If you’re coming from spreadsheets where = introduces a formula, the mental model is different here: the equals sign names a value, and the result pane handles the display.
Where the Calculator Percentage App Fits Best
Notes Calculator is most useful for percentage-heavy work that lives in plain text — invoices, budgets, sale-price comparisons, tax math, tip splits, percent-change reporting. Anywhere you’d otherwise reach for a spreadsheet to do four lines of math, this is faster and the note is easier to share.
If you want to go deeper, the percentage calculator deep-dive covers the underlying formulas, and the pricing page lists what’s free and what the optional one-time upgrade unlocks. The full operator and conversion grammar lives in the official documentation.
FAQ
Does Notes Calculator support % on currencies? Yes. $120 + 18% returns $141.60 — the unit is preserved.
Can I store a percentage in a variable? Yes. tax = 21% is valid; using it as subtotal * tax returns the tax amount.
What’s the difference between % on and % off? 10% on 200 adds 10% to 200 (returns 220). 10% off 200 subtracts 10% from 200 (returns 180).
How do I get the original price from a discounted price? Use the reverse form: 180 is what % off 200 returns 10%. To find the original from a sale price plus a known discount, set up the variable: original = sale price / (1 - 20%).
Where can I read the full syntax reference? The Notes Calculator docs cover every operator, conversion, and percentage form.
Percentage math is one of those small things you do constantly, and a calculator percentage app that reads the way you think saves real minutes every week. Open Notes Calculator in your browser and paste any of the snippets above — they all run as written. If you find yourself using it daily, the pricing page has the one-time upgrade.