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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

CrossTable and dates

Hi all,

I have a problem with crossTable Load. I have this table in Excel:

diskuze.PNG

I use this code:

Capacity:

CrossTable (Months,Utilization)

LOAD

    Name as WorkerName,

    "43009",

    "43040",

    "43070",

FROM [path.xlsx]

(ooxml,embedded labels,  table is Sheet1);


I need to view dates, but when I try to convert it to date, no results (Date, Timestamp...)

How to load this data? Especially for a heatmap?

Thaks a much for your ideas

1 Solution

Accepted Solutions
shraddha_g
Partner - Master III
Partner - Master III

Try:

Capacity:

CrossTable (Months,Utilization,1)

LOAD

    Name as WorkerName,

    "43009",

    "43040",

    "43070",

FROM [path.xlsx]

(ooxml,embedded labels,  table is Sheet1);

Final:

Load WorkerName,

          Utilisation,

date(num#(purgeChar(Months,'"'),'00000')) as Months

Resident Capacity;

Drop table Capacity;

View solution in original post

4 Replies
shraddha_g
Partner - Master III
Partner - Master III

Try:

Capacity:

CrossTable (Months,Utilization,1)

LOAD

    Name as WorkerName,

    "43009",

    "43040",

    "43070",

FROM [path.xlsx]

(ooxml,embedded labels,  table is Sheet1);

Final:

Load WorkerName,

          Utilisation,

date(num#(purgeChar(Months,'"'),'00000')) as Months

Resident Capacity;

Drop table Capacity;

Anonymous
Not applicable
Author

Thank you very much

mboreham
Contributor II
Contributor II

Thank you so much for this. I will never get the last four hours of my life back but I won't waste the next four. This is wonderful

abhijith28
Creator II
Creator II

I have a similar requirement where date format is Jun-19, jul-19

But i am not able to see the data after loading.

Please help me with this issue