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

How to combine 2 tables from different files into same filter panel

Hi All

I have 2 files (Table 2019 & Table 2020) and I would like to combine the Year 1 & Year 2 into (Year) to be use as filter panel in Qlik. Can anyone help on this.

Table 2020

Year_1SI NoActivation Date
2020CL1001125-Jan-20
2020CL1001225-Jan-20
2020CL1001325-Jan-20

 

Table 2019

Year_2SI NoActivation Date
2019CL1000125-Jan-19
2019CL1000225-Jan-19
2019CL1000325-Jan-19

 

Labels (1)
  • SaaS

1 Solution

Accepted Solutions
Kushal_Chawda

@Newbie_To_Qlik  Probably you need to append both the table into one as structure of the table looks similar like below

Data:
LOAD Year_1 as Year
     [SL No],
     [Activation Date]
FROM table1;

concatenate(Data)
LOAD Year_2 as Year
     [SL No],
     [Activation Date]
FROM table2;

 

 You can now use Year field for your filter selections 

View solution in original post

1 Reply
Kushal_Chawda

@Newbie_To_Qlik  Probably you need to append both the table into one as structure of the table looks similar like below

Data:
LOAD Year_1 as Year
     [SL No],
     [Activation Date]
FROM table1;

concatenate(Data)
LOAD Year_2 as Year
     [SL No],
     [Activation Date]
FROM table2;

 

 You can now use Year field for your filter selections