Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Saravanan_Desingh

Join in the front End

Hi,

I have tow tables.

  

AreaMapping
CanadaN
ChinaN
FranceY
GermanyY
IndiaY
ItalyY
JapanN
UKY
USAN

 

Country
Australia
Canada
China
France
Germany
India
Italy
Japan
USA

Expected output:

  

CountryMapping
Australia
CanadaN
ChinaN
FranceY
GermanyY
IndiaY
ItalyY
JapanN
USAN

This can be achieved thru LOAD script without any issue.

But how to achieve through Expression in a Chart?

Thought this is a sample data, in my real scenario, I have few similar requirements.

Few expressions, which didn't work for me:

Only({<Mapping=p({<Country=p(Area)>})>} Mapping)

Only({<Country=p(Area)>} Mapping)

Only({<Area=p({<Country=p(Area)>})>}Mapping)

1 Reply
Digvijay_Singh

May be this -

Area as dimension and expression as -

Only({<Area={$(=chr(39)&concat(Country,chr(39)&','&chr(39))&chr(39))}>}Mapping)

Capture.PNG