visual studio 2010 - How I can format date in report to appear exactly as I want - RDLC -
i have report in application , report show long date db , used expression make shorter:
=formatdatetime(fields!statementdate.value,dateformat.shortdate)
and date show : 1/1/2010
i need make : 2010/1/1
how can it?
that expression trick
=cdate(fields!fecha.value).tostring("yyyy/m/d")
Comments
Post a Comment