I have a date field which is in this format YYYYMMDD, I'm trying to convert it into YYYY/MM/DD.
Though I was successful in extracting the first 4 digits using
left(Fields!DATE.Value,4)+"/"+right(Fields!DATE.Value,2) ,
How to extract the month MM from the yyyymmdd
Thx
Sm