Date Format in Reporting Services
I need to convert this value using expressions in reporting 开发者_StackOverflowservices From 20100804 to Day 04 , Month 08, Year 2010
Is this possible?
Something like this expression.
= Format(DateTime.ParseExact("20100804", "yyyyMMdd", System.Globalization.CultureInfo.InvariantCulture), "'Day 'dd' , Month 'MM', Year 'yyyy")
精彩评论