Can I change the this format 0117(mmyyy) to convert to mm/dd/yyyy format for crm reports.
I have working code in below for custom code.
Dim dt As String = "0112"
Dim dt As New Date(("20" + Microsoft.VisualBasic.Right(_date, 2)), Microsoft.VisualBasic.Left(_date, 2), 1)
here 20 is by default 20 + yy =20yy something.
Output here :- 1/1/2012 working fine.
is it possible in expression in crm reports ?
Thanks