Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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?
Thanks in advance.
Regards,
Ramakoti
there is no option but to use an If() block
if( getselectedcount(field1),'Field1', if( getselectedcount(field2),'Field2'.................................
@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'
))