Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
You can do this by using combo chart.
if you can share your sample data i can try to produce it.
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.