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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Loading of data in fact table with several date fields

Hello,
Problem : load data to the fact table
i have multiple fields that contains DATE in other dimensions and i don't know which one to join with dim_time.
Example : Dim_A contains (id_dimA, ID,Date1, Date2)
Dim_B contains (id_dimB, ID, Date3)
Dim_Time(id_dimTime, date)
how i can do it
Labels (3)
1 Solution

Accepted Solutions
manodwhb
Champion II
Champion II

@ahouri , you need to get to know the business knowledge on what to join between those tables and then do the lookups accordingly. probably you can try to do the below and you should use the same way in reporting layer or downstream layers.

 

Start date Key:- get id_dimTime lookup on Date1=date

End date Key:- get id_dimTime lookup on Date2=date

View solution in original post

2 Replies
manodwhb
Champion II
Champion II

@ahouri , you need to get to know the business knowledge on what to join between those tables and then do the lookups accordingly. probably you can try to do the below and you should use the same way in reporting layer or downstream layers.

 

Start date Key:- get id_dimTime lookup on Date1=date

End date Key:- get id_dimTime lookup on Date2=date

Anonymous
Not applicable
Author

Thank you @manodwhb