Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed:
=A2-SUM(B2:E2)Edit the grid or formula, then run it through a real spreadsheet engine — no signup.
Sample data — click any cell to edit
Working on a sheet you inherited? Run the Auditor on the whole file first — it flags every #REF!, #N/A, broken column pattern, and inconsistent formula in seconds, free, no signup.
Gross pay is the full amount before any deductions. Net pay, or take-home pay, is what is left after tax, provident fund or social security, insurance and other deductions are subtracted.
Put the percentage deduction in its own cell — for 20% income tax on gross in A2, use =A2*0.2 — then include that cell in the SUM of deductions.
Replace the flat percentage with a nested IF, or an IFS or lookup, that returns the correct rate for each salary band, then subtract it like any other deduction.
Wrap the subtraction in MAX(0, ...): =MAX(0, A2-SUM(B2:E2)) clamps the result at zero if total deductions ever exceed gross.
Calculate a compounded closing balance from principal, annual nominal rate, compounding frequency and years, then separate the interest earned.
How-toConvert a positive nominal annual rate and a whole-number compounding frequency into an effective annual rate with EFFECT.
How-toDivide fixed costs by unit contribution margin and round up to whole units, with an explicit message when the margin is nonpositive.
How-toApply different commission rates by sales tier using IFS. Works in Excel 2019/365 and Google Sheets.
How-toCompute gross margin percentage as (price − cost) / price. Identical in Excel and Google Sheets.
How-toDivide total cost by total units to find cost per unit using a simple formula in Excel or Google Sheets.
Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed: