Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Multi Language Issue in Qliksense

Hello,

Based on the suggestion in following link, I created a small app

Handling Multiple Languages

I used below script to show the title of the visualization , however i am  getting result as blank!

=Only({<Id={2}>} [$(vLanguage)]) 


Attaching the sample application for your reference, any indicator on what I am doing wrong will be really helpful

Regards

Nithin

4 Replies
ahaahaaha
Partner - Master
Partner - Master

Hi Nithin,

May be use measure expression like this?

=If(GetFieldSelections(Language)='jp', Only({<Id={2}>} jp))


Example at attached file.

Regards,

Andrey

agigliotti
Partner - Champion
Partner - Champion

try with:

Only({<Id={2}>} $(vLanguage) )

Not applicable
Author

Thanks, but not worked, the result is blank!

Not applicable
Author

This code works, but concern is i have to write if condition for each language we want to have the literals translated!