Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

4 values into one

Hello

it is possible to make 4 different values into one?

eg on the picture i have 4 Closed values.

IS it possible to make one value called Closed which is a sum of them all??

Expression is atm.

=count({1<DimPotentialCustomers.RelationID=p({1<DimPotentialCustomers.RelationID={'11', '13','14','16','10','12'}>} DimPotentialCustomers.RelationID)>} DimPotentialCustomers.Company)

crm1.PNG

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Replace your chart dimenension with calculated dimensions, like this:

aggr((if(wildmatch(YourDimension, 'Closed*'), 'Closed', YourDimension), YourDimension)

Regards,

Michael

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Replace your chart dimenension with calculated dimensions, like this:

aggr((if(wildmatch(YourDimension, 'Closed*'), 'Closed', YourDimension), YourDimension)

Regards,

Michael

Not applicable
Author

Brilliant, just what i needed!! Thank you