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

Popular posts from this blog

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -