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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
paulyeo11
Master
Master

How to make My GL Table date_GL field link to master calendar date ?

HI ALL

My GL Table , date field name = date_GL , i use below script to chk the min and max date :

tmp:

LOAD

  min(date_GL) AS MinDate,

  max(date_GL) AS MaxDate

RESIDENT GL_TABLE;

My sales table , date field name = date , i use below script to chk min and max date :-

CONCATENATE (tmp)

LOAD

  min(date) AS MinDate,

  max(date) AS MaxDate

RESIDENT sales_table;

My question is how to make both date , date and date_GL able to link to master claendar ?

The reasons i use diff field name for both table on date , is because i just want to make sure that it will check min and max date correctly.

Paul

4 Replies
paulyeo11
Master
Master
Author

Enclosed my data model.

selcukcadir
Creator II
Creator II

hi paulyeo11, can you add an example qvw file?

paulyeo11
Master
Master
Author

Hi Selcuk

Thank you for your help.

paulyeo11
Master
Master
Author

Hi All

Can some one advise me pls.

Paul