Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I'm new to Qlik View and going through the Getting Started for Developer v10 tutorial. In module 8, the user is directed to create a tempcalendar. My script reads:
//*************** Temporary Calendar ***************
TempCalendar:
LOAD
$(varMinDate) + rowno() - 1 AS DateNumber,
date($(varMinDate) + rowno() - 1) AS
TempDate
AUTOGENERATE
$(varMaxDate) - $(varMinDate) + 1;
which is exactly what the course directs. Upon reload or debug, I get this error:
Script line error:
+ rowno() - 1 AS DateNumber,
date( + rowno() - 1) AS
- + 1
Anyone know what's going on here? Thanks!