Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to to sum each rows in excel?

Tags:

excel

vba

how to make the formula effect on the whole sheet.

the format is : get each lines number sum. then substract some numbers.

eg: there are 100 lines records. how to make the formula effects on each lines?

namely : A1+B1+C1+D1+....equals a number, then using the number-20 -15....

each line using the same way, thank you.

like image 311
zhuanzhou Avatar asked Jul 14 '11 07:07

zhuanzhou


People also ask

How do you sum row rows?

Hold the “Ctrl + Shift” key together. First, press the left arrow to select the complete row. Then, by holding the “Ctrl + Shift” keys together, press the “down arrow” to select the whole column. Like this, we can select multiple rows in Excel without much trouble.

How do I sum multiple rows in one column?

The hotkey or shortcut of AutoSum function are Alt + = keys in Excel. Select a list of data in Excel, and then press the Alt + = keys simultaneously, and then it will add the sum value below this list.


2 Answers

You can input a range into =SUM() like this:

=SUM(A1:X1)

This calculates the sum of the 1. line from A to X. Just copy/paste the formula to ther rows to calculate the some for those.

like image 70
Jacob Avatar answered Oct 01 '22 15:10

Jacob


Drag the sum down in corner of cell where cursor becomes + sign

like image 41
seriouslee Avatar answered Oct 01 '22 16:10

seriouslee