Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Marlen
Contributor
Contributor

X axis labels

Hello.

I want to do something like this excel line chart with custom x axis labels:

plus_stick_0-1612932354273.png

4 measures, 1 date dimension and 1 measure (highlighted) as a label near the monthes.

Is it possible in qlik sense?

Thanks in advance.

1 Solution

Accepted Solutions
PradeepK
Creator II
Creator II

Hi @Marlen

You can use Aggr() function..

 

Sample code for reference

Syntax - AGGR(<Measure>,<dim list>)

 

=Month & '(' & Aggr(Sum(Sales),Month) & ')'

 

Cal dim.png

 

Tip : Use Sort by expression for sorting related issue.

Hope this helps!

View solution in original post

2 Replies
PradeepK
Creator II
Creator II

Hi @Marlen

You can use Aggr() function..

 

Sample code for reference

Syntax - AGGR(<Measure>,<dim list>)

 

=Month & '(' & Aggr(Sum(Sales),Month) & ')'

 

Cal dim.png

 

Tip : Use Sort by expression for sorting related issue.

Hope this helps!

Marlen
Contributor
Contributor
Author

Thanks. It's working well