Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi There
I am trying to get the max date on a date that is text
my date format is '201407'
Max dat on this is fine but I want to display it as July 14
variable, Max(DMonth)
below is my expression.
='Last Month '&'('&vMaxMonth&')'& ' Payment '
Load
DMonth,
Month(Date(Date#(DMonth,'YYYYMM'),'MMYYYY'))&'-'& Right(Left(DMonth,4),2) as [Text Month]
Resident Debtors;
how can I achieve this?
Regards,
Hi,
Write
Date(Date#(DMonth,'YYYYMM'),'MMMM YY')
Regards
Hi,
Write
Date(Date#(DMonth,'YYYYMM'),'MMMM YY')
Regards
Hi Try this
month(right(DMonth,2)&'/'&'01'&'/'&left(DMonth,4))
-Sundar
Thanks you