Skip to main content
Announcements
YOUR OPINION MATTERS! Please take the Qlik Experience survey you received via email. Survey ends June 14.
cancel
Showing results for 
Search instead for 
Did you mean: 
ashishpalkar
Creator III
Creator III

Display Current group selection in text box

Hi Experts

I have creted cyclic group in chart. I want to display group selection label in text box or in group label.

Thanks in advance,

1 Solution

Accepted Solutions
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi Ashish,

Why dont you create those Fields in Script instead of creating as calculated dimension.

If you do that It will give you 2 advantages.

1. It will improve the performance of your application.

2. It will allow you to use the GetCurrentField() function to get the name.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!

View solution in original post

3 Replies
sunny_talwar

You will have to use if statement together with GetCurrentField() function to get those labels. No other direct way to access those names

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi Ashish,

Why dont you create those Fields in Script instead of creating as calculated dimension.

If you do that It will give you 2 advantages.

1. It will improve the performance of your application.

2. It will allow you to use the GetCurrentField() function to get the name.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
jpenuliar
Partner - Specialist III
Partner - Specialist III

try:

='Data By : ' & GetCurrentField([groupnamehere])