Adding and Subtracting in a Cell
Use the plus and minus operators to combine numbers right inside a formula.
Adding and Subtracting in a Cell is a free Excel Formulas Academy lesson on CoddyKit — lesson 2 of 4. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Excel Formulas Academy learning path, one of 4 lessons in the course, and your progress syncs across the web and the CoddyKit app.
Math Inside a Cell
Now the most common task of all: adding and subtracting. Use + to add and - to subtract, typed right between numbers or cells.
=8+2Simple Addition
To add, put a + between numbers after the equals. The formula below shows 30. You can chain more too, like =10+10+10, with no limit.
=10+20Simple Subtraction
Subtraction uses -. The formula below shows 40. Order matters: =10-50 gives -40, and negative results are perfectly normal.
=50-10Adding Cell References
Point at cells instead of typing numbers. If A1 is 100 and A2 is 25, the formula below shows 125, and it updates whenever those cells change.
=A1+A2Subtracting Cell References
Subtraction works the same with references. If B1 is your target (500) and B2 is actual sales (420), =B1-B2 shows how far off you are: 80.
=B1-B2Mixing Numbers and References
You can mix typed numbers and references freely. If A1 is a price of 90 and you add a flat 10 shipping fee, the formula below shows 100.
=A1+10Chaining Plus and Minus
Combine adding and subtracting in one formula, read left to right. With cash 200, income 150, and expense 80, the formula below gives 270.
=A1+A2-A3Worked Example: Cash on Hand
Track money across a week: start 500, received 120, spent 200. Type the formula below in B4 to get your end-of-week cash: 420.
=B1+B2-B3Spaces Are Optional
Spaces around operators don't matter: =A1+A2 and =A1 + A2 give the same answer. Add spaces if they make long formulas easier to read.
=A1 + A2 - A3Watch for Text in Cells
Addition only works on numbers. If a cell holds text like the word "twenty," you'll get a #VALUE! error. Check that every cell holds a number.
=A1+A2Negative Numbers Are Fine
Negative results are useful! A formula like =income-expenses showing a negative number tells you that you overspent. If A1 is 300 and A2 is 450, you get -150.
=A1-A2Quick Check
Test your understanding of adding and subtracting.
Recap
Recap: use + to add and - to subtract after the equals. You can chain them, mix numbers and cells, and negatives are fine. Watch for #VALUE! on text.
=B1+B2-B3Frequently asked questions
Is the “Adding and Subtracting in a Cell” lesson free?
Yes — the full text of “Adding and Subtracting in a Cell” is free to read here on the web, and the Excel Formulas Academy course includes 4 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Excel Formulas Academy course, upgrade to CoddyKit PRO.
What will I learn in “Adding and Subtracting in a Cell”?
Use the plus and minus operators to combine numbers right inside a formula. You practise Excel Formulas Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.
Do I need any experience to start Excel Formulas Academy?
No prior experience is required. Excel Formulas Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 2 of 4, so you can start here or from the beginning and move at your own pace.
How long does the “Adding and Subtracting in a Cell” lesson take?
Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.
Can I write and run code in this Excel Formulas Academy lesson?
Yes. Every Excel Formulas Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.
All lessons in this course
- Why Every Formula Starts With Equals
- Adding and Subtracting in a Cell
- Multiplying and Dividing Values
- Order of Operations in Formulas