Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! 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
MVP
MVP

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