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: 
Not applicable

my 2 table each have date , how to link them to master calendar date ?

Hi All

if you notice that i have already link both date to master calendar. i wanted the inquiry date and quotation date both link to master calendar. but i am not able get it link . Any advise will be appreciated.

13 Replies
saumyashah90
Specialist
Specialist

Hi Paul,

Left Join(Quotation)

Load * from Inquirytable;

Left Join(Master Table)

Load * from Quotation;

will resolve your problem

Not applicable
Author

Hi Sir

I try below :-

load *,

Date as cal_date

from

Inquiry.qvd (qvd);

This time no error , but the Date field does not rename to new name ?

Paul

Not applicable
Author

Hi Sir

I try to create link key from quotation table using Ref. No and Date field . like below :-

AutoNumberHash128('Ref. No','Date') As Link_Key,

or

Autonumber( 'Ref. No' & '_' & 'TDSS' ) as INVKey,

but no work.

Not applicable
Author

What is the date field in the master calendar that you want to link the other dates to?

try this:

load *,

Date as <your_date_field_in_master_calendar>

from

Inquiry.qvd (qvd);