1 Answer
- Newest
- Most votes
- Most comments
2
Quicksight doesn't have a built in group_concat function.
If you are using SQL, try:
SELECT Category, GROUP_CONCAT(Value SEPARATOR ',') AS ConcatenatedValues
FROM your_table
GROUP BY Category
Relevant content
- AWS OFFICIALUpdated 20 days ago
- AWS OFFICIALUpdated 2 years ago

Thanks I don't have much experience with SQL but was able to figure it out from this.