Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Multiple Facts with same dimensions

Good morning,

I have an application where the source database contains multiple fact tables that share common dimensions. For example:

Dimensions:

  1. 1. Products(ProdCode,Product,PackCode,StockCode,Description)
  2. 2.Customer(Customer,Name, Salesperson,Area,Branch,Region)

Facts:

  1. 1.Sales(SalesOrder,Salesperson,InvoiceDate,StockCode,Transction_Month) Transction_Year,Amount)
  2. 2.Budget(Transction_Month,Transction_Year,StockCode,SalesBudget)
    3.CustemerInvoice(Customer,Invoice,InvoiceDate,SalesOrder,CustomerPoNumber,Salesperson)
  3. 4.CustomerPayments(Customer, Invoice, Transction_Month,Transction_Year, SalesOrder)

I have tried to use Generic Keys but I cannot get the desired solution, I am not even sure if I am following them quite correctly.

Can you suggest how best to resolve this so that each fact table is correctly associated with just the relevant dimension table?


Thanks

7 Replies
neha_shirsath
Specialist
Specialist

Hi,

You need to create Link table for facts with composite key and concatenate all the facts in link table and link table will link to your dimension table.

for more understanding can you post some sample data.

Thanks & Regards,

Neha

Not applicable
Author

Hi Neha ,

Please find the attached data sample

Thanks

annafuksa1
Creator III
Creator III

Try to join tables with each others

adamdavi3s
Master
Master

Both of the above answers are correct but you should decide on the best data model structure for your scenario.

Capture.PNG

annafuksa1
Creator III
Creator III

and test the model if you are getting correct information.

adamdavi3s
Master
Master

Agreed!

Here is the link model out of interest, this is how I personally would do it anyway!

anushree1
Specialist II
Specialist II

Please find the attached and check this works.

I feel Adam's Model is more precise as its more flexible when new table needs to be added