Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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])
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])
Thanks, Jonathan.