Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I an new to qlikview can you please help me in renaming two values in a list box.
Jobs:
LOAD * INLINE [
Professions,
Doctor
Teacher
Engineer
Professor
IndianAdministrativeService
IndianForeignService
];
Required:-
I want to rename IndianAdministrativeService and IndianForeignService to be renamed as IAS and IFS in the listbox using the expression in listbox.
Can you please guide me.
Thanks in advance
Regards,
Anu
=if(Professions='IndianAdministrativeService','IAS',
if(Professions='IndianForeignService','IFS',Professions))
=if(Professions='IndianAdministrativeService','IAS',
if(Professions='IndianForeignService','IFS',Professions))
This?
If(Pick(Match(Professions, 'IndianAdministrativeService', 'IndianForeignService'), 'IAS','IFS'), Professionals)
Thank you so much John
I dont know why but it is not working anil.....
Try this Perhaps
Pick(Match(Professions, 'IndianAdministrativeService', 'IndianForeignService'), 'IAS','IFS', Professions)
Hi Anil,
Thank you
It is working but rest of the values are not visible by using this expression.
May be i need to test that, Anyway you got work around.
Test done, This should work
=Pick(Match(Professions, 'IndianAdministrativeService', 'IndianForeignService')+1, Professions, 'IAS','IFS')