Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Link tables

Hi all ,

Can some one help me how to use link tables as i have two fact tables connecting to same dimmension tables, thus causing cirrcular loops and syntetic keys

Please find attachment

Thanks

3 Replies
Jason_Michaelides
Luminary Alumni
Luminary Alumni

Hi,

Concatenate() will often work better than a link table. Something like:

Data:

LOAD

  'type1' AS FactType,

  *

From....;

Concatenate (Data)

LOAD

  'type2' AS FactType,

  *

From....;

Hope this helps,

Jason

Not applicable
Author

Hi i cannot concatinate the fact tables as they deal with different measures one fact table is sales and the other fact table is orders

Jason_Michaelides
Luminary Alumni
Luminary Alumni

Which is why you use the FactType field. In your chart expressions you can use set analysis to distinguish between the different fact types - Sales and Orders.