Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have Year and Month fields in QlikView and I need YearMonth beside each other like:
Year:2015
Month:05
YearMonth: 201505
How can I do it?
Try this:
Date(MakeDate(Year, Month, 1), 'YYYYMM') as YearMonth
or
Date#(Year&Month, 'YYYYMM') as YearMonth
Try this:
Date(MakeDate(YEAR, MONTH), 'YYYYMM') as YearMonth
Hi,
Try this in backend:
Year(Datefield) & ' ' & Month(Datefield) as YearMonth
Thanks,
AS
Create Field in script
date#(Year &Month,'YYYYMM') as YearMonth
concat fields in edit script to get result
Year&Month as YearMonth
concat fields as a calculated dimension to use in any Qlikview object
or also use same in list box defining custom expression.
Year&Month
Regards,
Zain.