views:

21

answers:

1

Hi

I need to convert this value usign expressions in reporting services From 20100804 to Day 04 , Month 08, Year 2010

Is this posible? Thanks

A: 

Something like this expression.

= Format(DateTime.ParseExact("20100804", "yyyyMMdd", System.Globalization.CultureInfo.InvariantCulture), "'Day 'dd' , Month 'MM', Year 'yyyy")
jimconstable