Home > Back-end >  How to subtract the values ​entered in a column from a cell
How to subtract the values ​entered in a column from a cell

Time:01-10

I'm trying to make a spreadsheet to control financial expenses. How to subtract from a cell the values ​​entered in a column in Google Spreadsheet?

Example:

enter image description here

enter image description here

The expected result was 1,500, but the formula is subtracting only cell B2

How to subtract the values ​​entered in a column from a cell

CodePudding user response:

One simple way is to sum the values in B:

=A2-SUM(B2:B)
  • Related