Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Everyone,
Please can you assist, I need to change the field "MT NO" in below to return the Month Name and not the Month No.
LOAD
"YR SEASON CODE" as "Year Season Code",
"MT NO" as "Month",
"WK NO" as "Week No",
"YR NO" as "Year"
FROM [lib://QlikData.qvd]
(qvd);
Hi,
Try this
=month(MakeDate(2000,'MT NO'))
Thanks,
Naresh
Thanks works perfectly.
Let's try as below:
LOAD *,
Month( MakeDate(Year, Month, 1) ) as New_Month;
LOAD
"YR SEASON CODE" as "Year Season Code",
"MT NO" as "Month",
"WK NO" as "Week No",
"YR NO" as "Year"
FROM [lib://QlikData.qvd]
(qvd);
in the UI you can use New_Month as dimension.
hi Valeta,
Both should do the work:
=month(makedate(2018,'MT NO',1))
=date(makedate(2018,'MT NO',1),'MMM')
G.