I have a spreadsheet with two columns, “Name” and “Score” and hundreds of rows. Each row can contain a non-unique name.
I want to create a different view, that automatically updates, which aggregates these rows and calculates the average score for each unique name. In SQL, this would be done trivially with a statement like “SELECT name, AVG(score) FROM table GROUP BY name;”
I believe Libreoffice has some similar functionality, but I’m not familiar enough with it. Would this be case for pivot tables or some sort of conditional row expressions? How would I do this in Libreoffice?