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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to make this chart

Hi guys,

  

ABCDE = Total(A + B + C + D)FE + F
P11111
Q22222
R33333
S44444
T55555
A, B, C, D, F -> are coming from one field so it is dimension.
P, Q, R, S, T -> are derived fields so i am using as expression.
How to achieve E which is derived and E+F
Plz help
Thanks.
Labels (1)
5 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

A, B, C, D, F -> are coming from one field so it is dimension.

Create a new field from that in a new table:

NewTable:

LOAD * inline [

Field1, NewField

A, A

B, B

C, C

D, D

A, E

B, E

C, E

D, E

A, G

B, G

C, G

D, G

F, F,

F, G

];

Then use NewField as dimension in the chart instead of Field1.


talk is cheap, supply exceeds demand
Not applicable
Author

Thanks.

And if some of the value i dont want to see in new field how can i achieve that ?

rajeshqvd
Creator II
Creator II

simply put Column(1)+Column(2)+Column(3)+Column(4) for E and Column(5)+Column(6) for E+F

rajeshqvd
Creator II
Creator II

use set analysis and filter what  you want

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Leave them out.


talk is cheap, supply exceeds demand