-1

I have the following problem: I need to group data and perform a sum in another column in libreoffice calc/excel spreadsheet, just like a group by would do in SQL

In the following example, I would like the cells A26, A27 to become one line, and cell C26 should be the sum of the 2 rows.

Rogger Fernandes
  • 805
  • 4
  • 14
  • 28

1 Answers1

0

Try on E26 cell the formula =($A26 & $B27) (Or =($A26 & (-$B27)) if you want a dash between A26 and B27).

And on F26 cell =($C26+$C27) for the sum of rows.

Copy/Paste for the other cells of each col

DeLuc
  • 3
  • 3