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: 
vikasgupta
Creator
Creator

Text on Axis

Hi all,

I have a bar chart I wants to add one expression as Text on axis please suggest any one how can  I achieve this in Qlik Sense .

Thanks,

Vikas

1 Solution

Accepted Solutions
JonnyPoole
Former Employee
Former Employee

I think that is possible.  Below i replaced my dimension with an expression:  I added a measure of count(customer) to the dimension label . Just make sure to wrap it in an aggr() using your original dimension as the 2nd argument for the function. 

aggr([countries_world.Name] & '   ' & count(Customer),[countries_world.Name])

Capture.PNG

View solution in original post

2 Replies
JonnyPoole
Former Employee
Former Employee

I think that is possible.  Below i replaced my dimension with an expression:  I added a measure of count(customer) to the dimension label . Just make sure to wrap it in an aggr() using your original dimension as the 2nd argument for the function. 

aggr([countries_world.Name] & '   ' & count(Customer),[countries_world.Name])

Capture.PNG

vikasgupta
Creator
Creator
Author

Thanks,  Jonathan.