Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
rushi_kale_01
Contributor
Contributor

How can I show multiple data on dynamic text measure?

I am working on the Dynamic display of texts as per the filters. So, if I am selecting a certain company for a particular year, I want to show the top 5 department names in the Text box along with its revenue.

How can I do this? Any help is greatly appreciated.

 

Thanks in advance 

Labels (5)
1 Reply
RafaelBarrios
Partner - Specialist
Partner - Specialist

Hi @rushi_kale_01 

For top 5 you will need to use the rank
https://help.qlik.com/en-US/qlikview/May2022/Subsystems/Client/Content/QV_QlikView/ChartFunctions/Ra...

then combine it with aggr

Aggr(rank(< rank options in documentation >),department)

and after that use concat to split en values 

=Concat(Aggr(rank(< rank options in documentation >),department),'|')

that should return something like

dep1|dep2|dep3|dep4|dep5

 

but could have some syntax error, couldn’t tried.

hope this helps.

best,