Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Concatenate

Hi,

I want to concatenate 3 tables with same column names and I have a date column also.Now I want to use one calendar for 3tables.But the problem is I should use resindent load in that calendar code and I have 3 date columns in 3 different tables.How can solve this problem?

3 Replies
chrismarlow
Specialist II
Specialist II

If the tables have been concatenated is the date field not in the single resulting table?

Otherwise you need to concatenate the 3 date fields to a single temporary table, then use the calendar code, then drop the temporary table.

Anonymous
Not applicable
Author

if you have 3 different date fields and you ant a common date field you must rename the fields

Tmp:

load

DATEFIELD1 as DATEFIELD,

*

resident TABLE1;

concatenate load

DATEFIELD2 as DATEFIELD,

*

resident TABLE2

That what you want?

Not applicable
Author

Hi,

if you have concatenated the tables then your date field would also have been concatenated????

otherwise you can simply perform resident load on all the 3 particular date fields and then concatenate them...

Hope it solve your problem.

Regards