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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
anuradhaa
Partner - Creator II
Partner - Creator II

Bar Chart problems

I have a bar char with two demensions,

Say "A" and "Sex". demension A has two cataogories.

I need to display bar chart using these demensions and it is ok. then i want to display the sum of "A"(both values) vs sex in same chart.

please tell me how to do it.

Thanks

2 Replies
Not applicable

You can do this by using combo chart.

if you can share your sample data i can try to produce it.

Anonymous
Not applicable

If I understand your question right this can be usefull.

You could create new dimensions in your loading script, like:

Load:

Sex,

If(Sex =,'M', sex) as Male,

If(Sex =,'F', sex) as Female,

A

Resident YOURDATA;

And use these fields, or you could use set analysis.

Kind regards,

Dennis.