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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Sxbbb
Creator III
Creator III

One chart always shows one name (dimensions)

 
 
3 Replies
Vegar
MVP
MVP

You can control which dimensions to include in your calculation by using set analysis.

I am assuming your current calculation is Sum(Value). In order to make sum(Value) to only calculate for the Name: KAIMA_4W you can add a set modifier like this:

Sum({<Name={'KAIMA_4W'}>}Value)

Sxbbb
Creator III
Creator III
Author

i tried this but if i press name=A3030#1 chart it doesn't show data I want when selecting a different name the value will be displayed.

 

marcus_sommer

You could make the assignment of names dynamically by querying the possible values of this field. This may look like:

sum({< Name = {'$(=subfield(concat(distinct Name, '|',), '|', 1))'}>} Value)

whereby the bold number is the index-number which item will be returned from the read fieldvalue-list.

Beside of this I could imagine that a grid-chart is more suitable. You could enable it within the object-properties in tab dimensions on the bottom left.

- Marcus