I need to set my date column as 01-Jan-2013, what is the format to acheieve this in rdlc?
I have given
=CDate(Fields!IssuingDate.Value).ToString("dd-mmm-yyyy")
its not working correctly. Any one post me the format for 02-Jul-2013.
Use this you will get your output
=CDate(Fields!IssuingDate.Value).ToString("dd-MMM-yyyy")