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

Combining two columns in X-axis

Hi Team ,

I am having three columns.Named as project,Application and requirement.One project can contain any no. of application.

EX

P1   APP1   r1

P1   APP1   r2

P1   APP2   r3

P2   APP1   r4

I want  to plot (project & Application) in x axis and count(requirement) in y axis.

X-axis       Y-axis

P1-APP1     2

P1-APP2     1

P2-APP1     1

I tried concat(project,application).It is not working. Can u please suggest a solution for this?

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Create a new field in the load script that combines the two fields or use a calculated dimension that combines the two fields: project & '-' & Application


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Create a new field in the load script that combines the two fields or use a calculated dimension that combines the two fields: project & '-' & Application


talk is cheap, supply exceeds demand
Not applicable
Author

Hi Gysbert,

Thank u for the reply.It is working fine.