Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
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