Reputation: 1
I am trying to aggregate strings that belong to the same product code in one row. Which Qlik sense aggregation function should I use?
I am able to aggregate integers in such example, but failed for string aggregation.
Upvotes: 0
Views: 628
Reputation: 931
As x3ja mentioned, you can use an aggregation function in charts that will work for strings, including:
These can result in the type of thing you're looking for:
It's worth noting, though, that this sort of problem is almost always an issue with the underlying data model. Depending on what your source data looks like, you should consider investigating your use of Join
and/or Concatenate
. You can see more info on how to use those functions on this Qlik Help page.
Here's a very basic example of using a Join
to properly combine the data in a way that results in all data showing up a single record without needing any aggregations in the table chart:
Upvotes: 0