Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have many data's like SF, LA, NY etc. How to display them as full San Francisco, Los Angeles, New York on Qlik sense filter pane chart? Data source is local database.
Try this
=Pick(Match(CityCode, 'SF', 'LA', 'NY'),
'San Francisco', 'Los Angeles', 'New York')
Hi,
Create an excel file with the location and location full name information. Create a mapping load with these 2 fields and use an Applymap to include the location full name in fact table. Later you can start using the location full name field as a filter.
Please find the below code and the attached excel file.
Map_Location:
Mapping
LOAD Location,
[Location Full Name]
FROM
[C:\Users\admin\OneDrive\Desktop\Locations.xlsx]
(ooxml, embedded labels, table is Sheet1);
ApplyMap('Map_Location', Location) as [Location Full Name]
Try this
=Pick(Match(CityCode, 'SF', 'LA', 'NY'),
'San Francisco', 'Los Angeles', 'New York')
@Chanty4u What is the difference between first and second option?