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

Master calendar with Time values

Im using the master calendar created using the data form the code below. Id like to change this so that i can use time values in my master calendar. Any suggestions?:



//Temp Calendar
TempCalendar:
LOAD
$(varMinDate)+rowno() -1 AS DateNumber,
date($(varMinDate)+ rowno() -1 )AS TempDate,
AUTOGENERATE
$(varMaxDate)-$(varMinDate)+1;


Labels (1)
1 Solution

Accepted Solutions
fernandotoledo
Partner - Specialist
Partner - Specialist

Use TIMESTAMP(DATE,'DD/MM/YYYY hh:mm:ss') instead DATE()

View solution in original post

2 Replies
fernandotoledo
Partner - Specialist
Partner - Specialist

Use TIMESTAMP(DATE,'DD/MM/YYYY hh:mm:ss') instead DATE()

Not applicable
Author

Thankyou.