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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
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;


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.