Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Dolly123
Creator II
Creator II

master calendar

if we have 2 fact tables both have dates individual and we dont want to join the tables we need separte table only common should be master calendar so  should connected with master calendar how we can do it

4 Replies
vikasmahajan

Hi,

You can implement the link table :

https://community.qlik.com/t5/Qlik-Sense-Documents/link-table/ta-p/1883375

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
Hania
Creator
Creator

Hi,

Yes you can do it with the help of Link table  (also Knowns as Canonical Dates).

Step1: after loading the data you need to create Bridge Table for both the Dates  and Flag as well  with the help of primary key.

Step2: concatenate table of Both Dates .

Step3:  create master calendar  for Dates

Here is an Code for Bridge Table of my sample Data you can refer it .

LinkTable:
Load
CustID,
Date("Actual Delivery Date" ,'DD/MM/YYYY') as Date,
'Actual Delivery Date' as flag
Resident SALESDETAILS;

Concatenate

Load
CustID,
Date("Promised Delivery Date" ,'DD/MM/YYYY') as Date,
'Promised Delivery Date' as flag
Resident SALESDETAILS;


mastercalender:
load
Date as Date
Resident LinkTable;

Use Date and Primary Key of your Data. 

Hope this helps,

help user find answers ! don't forget to mark  a solution that work for you and click the like button!

 

 

Dolly123
Creator II
Creator II
Author

I have 2 tables for resident how we can do 

rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Please find a downloadable example here:

Qlikview Cookbook: Tutorial - Using Common Date Dimensions https://qlikviewcookbook.com/recipes/download-info/tutorial-using-common-date-dimensions/

-Rob