Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
Can anyone help me on this.
I have created a new RANGE field (Year till Last Month) by using following code in data load editor.I can see ''YEAR TILL LAST MONTH'' in qliksense desktop but can not see ''YEAR TILL LAST MONTH'' in qliksense server version.May i know the reason?i am attaching screenshot for your reference.
LOAD * INLINE [
Range; RangeStart; RangeEnd
This Week; WeekStart(vToday); WeekEnd(vToday)
Last Week; WeekStart(vToday,-1); WeekEnd(vToday, -1)
Month till Date; MonthStart(vToday); MonthEnd(vToday)
Last Month; MonthStart(vToday,-1); MonthEnd(vToday,-1)
Quarter till Date; QuarterStart(vToday); QuarterEnd(vToday)
Last Quarter; QuarterStart(vToday,-1); QuarterEnd(vToday,-1)
Year till Date; YearStart(vToday); YearEnd(vToday)
Last Year; YearStart(vToday,-1); YearEnd(vToday,-1)
Year till Last Month; YearStart(vToday); MonthEnd(vToday,-1)
] (delimiter is ';')
;
Thanks
Hi Jacek,
Thanks for your quick response.Yes I published the app in the server after change.