Group rows by value of a column
Posted: Wed May 29, 2024 10:11 am
Greetings
I have a question about grouping the rows and I couldn't find my answer in the docs
Consider I have a datasource with these columns : Name - Count
for example I have 10 rows of this data source and 4 of them have same Name and I want to merge their Count column and sum the count
like :
Test 1 | 20
---------------
Test 1 | 23
--------------
Test 2 | 12
and the result I want :
----------------
Test 1 |
| 42
Test 1 |
----------------
Test 2 | 12
*only the Count column is merged
Is it possible to do this?
Thank you.
I have a question about grouping the rows and I couldn't find my answer in the docs
Consider I have a datasource with these columns : Name - Count
for example I have 10 rows of this data source and 4 of them have same Name and I want to merge their Count column and sum the count
like :
Test 1 | 20
---------------
Test 1 | 23
--------------
Test 2 | 12
and the result I want :
----------------
Test 1 |
| 42
Test 1 |
----------------
Test 2 | 12
*only the Count column is merged
Is it possible to do this?
Thank you.