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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Canonical Dates for 1 table

Is it possible to create canonical date when all your information is located in 1 table?

I'm trying to create Line charts with 6 different values. I have created Master Calendar which is not so helpful.

Please suggest, if possible to create a canonical date when all your information is located in 1 table.

Thanks in Advance

-Dushyant

12 Replies
Not applicable
Author

swuehl

I tried with larger data sets. 'I_MASTER_ID' is not unique in data set.

Do you have to have unique column for canonical date to work, even though data is from 1 table?

swuehl
Champion III
Champion III

to filter only the original records with selected canonical dates, you should link your tables using a primary key of your original table. If you don't have one yet, create a primary key e.g. using Recno() in the table LOAD:

LOAD

     Recno() as PrimaryKey,

    *

FROM MEDDS;

Not applicable
Author

That worked

Thanks

-Dushyant