Calculate sum of rows in Emacs table
I talked about using tables in Emacs that can potentially replace traditional spreadsheets, at least for doing simple work.
Today let us learn how to calculate sum of all the rows.
Item | Price |
---|---|
RAM | 120 |
SDD | 43 |
Power Cable | 5.99 |
Total | 168.99 |
@>
represents the last row$2
represents the 2nd column@2
represents the 2nd row@-1
represents the second last rowvsum
is the vertical sum
So now you know how to calculate sum of the rows ;) cool isn't it?