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: 
Not applicable

Chart according to data from a field of a table

Hello everyone,

Can you help me to know, how can I display data in a chart only for a field of a table ?

For example, I have a table "Country" which have "France, Allemagne, Italie, ...". In my chart, I only want to display datas from France, without any selection from the user.

Thanks for your help !

1 Solution

Accepted Solutions
Not applicable
Author

Use Set Analysis...

For example

Sum({$<Country={'France'}>} Amount)

View solution in original post

3 Replies
Not applicable
Author

Use Set Analysis...

For example

Sum({$<Country={'France'}>} Amount)

alexandros17
Partner - Champion III
Partner - Champion III

If your expression is for example sum(sales) then your expression will be:

Sum({$ <Country={'France'}>}  Sales)

Let me know

Not applicable
Author

I am dizzy !

Thanks you both for your response.