Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
RK007
Contributor II
Contributor II

Object Labels using DrillDown in Qlik Sense

Hi All,

 

in one of the charts, the title is coming from the DrillDown group with GetCurrentField function in QlikView. Whereas in Qlik Sense, the same is not working. I have attached the screenshot for reference. Please can anyone suggest to me to get this functionality?

Ramakoti01_0-1690363109720.png

Thanks in advance.

 

Regards,

Ramakoti

 

Labels (4)
2 Replies
vinieme12
Champion III
Champion III

there is no option but to use an If() block 

 

if( getselectedcount(field1),'Field1', if( getselectedcount(field2),'Field2'.................................

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
RK007
Contributor II
Contributor II
Author

@vinieme12  thank you for your response.

i have tried this, its working fine for me.

= 'By ' &
if(GetSelectedCount(Team)>=1 and not GetSelectedCount([User Type])>=1,'User Type',
if(GetSelectedCount(Team)>=1 and GetSelectedCount([User Type])>=1,'User Name',
'Team'
))