Skip to main content
Announcements
The way to achieve your own success is the willingness to help somebody else. Go for it!
cancel
Showing results for 
Search instead for 
Did you mean: 
rido1421
Creator III
Creator III

Max on text date

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,

             

1 Solution

Accepted Solutions
PrashantSangle

Hi,

Write

Date(Date#(DMonth,'YYYYMM'),'MMMM YY')

Regards

Great dreamer's dreams never fulfilled, they are always transcended.

View solution in original post

3 Replies
PrashantSangle

Hi,

Write

Date(Date#(DMonth,'YYYYMM'),'MMMM YY')

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
sundarakumar
Specialist II
Specialist II

Hi Try this

month(right(DMonth,2)&'/'&'01'&'/'&left(DMonth,4))

-Sundar

rido1421
Creator III
Creator III
Author

Thanks you