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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Dimension Merge

Hi all,

i have 3 different fact table and 3 dimensions,  one for each fact table, that contains same data type.  How can i merge this 3 dimensions in one only dimension as calculated dimension?

Thanks  a lot

Labels (1)
1 Reply
marcus_sommer
MVP
MVP

If the dimension-tables contain nearly the same they could be relative easy concatenated:

dimAll:

Load * From dim1;

     concatenate

Load * From dim2;

     concatenate

Load * From dim3;

But to handle 3 different fact-tables within a single datamodel isn't quite easy. Maybe these links are helpful:

Fact Table with Mixed Granularity

Data Modelling: Clarity vs. Speed

Concatenate vs Link Table

Merging Data from Multiple Sources

- Marcus