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: 
1 Solution

Accepted Solutions
vinieme12
Champion III
Champion III

this

map_report:

Mapping LOAD upper(Assetname) as Assetname,

  'Exists in Report'

FROM

(biff, embedded labels, table is report$);

map_Feuil1:

Mapping LOAD

    upper(Item) as ITEM,

    'Exists in Feuil1'

FROM

(biff, embedded labels, table is Feuil1$);

Tab_Feuil1:

LOAD Catégorie,

    Item,

    [Date d'installation],

    ApplyMap('map_report',upper(Item),'Not Exist in Report') as ReportExistsFlag

FROM

(biff, embedded labels, table is Feuil1$);

LOAD Assetname,

    Statename,

    Lastchanged,

          ApplyMap('map_Feuil1',upper(Assetname),'Not Exist in Feuil1') as Feuil1ExistsFlag

FROM

(biff, embedded labels, table is report$);

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

2 Replies
ahaahaaha
Partner - Master
Partner - Master

Hi Agrim,

As variant, you can use Set Analisys expression to work similarly to the island of data. In attached file I gave an example of selecting only the same records in fields [Assetname] and [Item] (Table 3) and the same records selection with the state of field Statename as 'Non-active' (Table 4).

Similar to this approach, you can make the other selections you need.

Regards,

Andrey

vinieme12
Champion III
Champion III

this

map_report:

Mapping LOAD upper(Assetname) as Assetname,

  'Exists in Report'

FROM

(biff, embedded labels, table is report$);

map_Feuil1:

Mapping LOAD

    upper(Item) as ITEM,

    'Exists in Feuil1'

FROM

(biff, embedded labels, table is Feuil1$);

Tab_Feuil1:

LOAD Catégorie,

    Item,

    [Date d'installation],

    ApplyMap('map_report',upper(Item),'Not Exist in Report') as ReportExistsFlag

FROM

(biff, embedded labels, table is Feuil1$);

LOAD Assetname,

    Statename,

    Lastchanged,

          ApplyMap('map_Feuil1',upper(Assetname),'Not Exist in Feuil1') as Feuil1ExistsFlag

FROM

(biff, embedded labels, table is report$);

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.