Notepad calculator: calculating with text and variables
The Soulver-style notepad calculator for quotes, budgets and mental math
A notepad calculator combines a text editor with a calculator: you write several lines just like on a notepad, and any line containing a number or calculation is evaluated instantly. The result appears right next to it, without pressing Enter or using formula syntax. Unlike a classic calculator, the entire calculation stays readable as text – ideal for quotes, budgets or side calculations you want to revisit later.
The heart of it is named values: write rent: 850 to store the value 850 under the name "rent". In any following line, you can use this name like a variable, e.g. rent + electricity – the calculator automatically replaces the names with the previously calculated numbers. This turns a loose list of numbers into a traceable calculation with meaningful names instead of anonymous intermediate results.
For subtotals, the reserved word total is available: it adds up all the numbers in the current block – an empty line automatically starts a new block, so several partial calculations stay cleanly separated. With prev you can access the result of the immediately preceding line, for example to calculate a chain of surcharges one after another.