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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
divya_anand
Creator III
Creator III

Multiple date fields in single table

Hi,

I have a single table data with 4 date fields (Created, Assigned, Target, Completed). how can I deal with this in connecting to the Master Calendar?

Thank you.

1 Solution

Accepted Solutions
3 Replies
Not applicable

Hi,

When u have multiple date fields use conicaldates

avinashelite

create a LINK table , to connect for the Master calendar.


Try like this :


Master:

LOAD

Created,

Assigned,

Target,

Completed,

Key

....



LINK:

LOAD Key,

Created as Date_Key

resident

Master;

LOAD Key,

Assigned as Date_Key

resident

Master;


LOAD Key,

Target as Date_Key

resident

Master;

LOAD Key,

Completed as Date_Key

resident

Master;



Calendar:

LOAD Date as Date_Key,

.....


NOTE: keep all the dates in same format


Hope this helps you .