Jacky Montevirgen
Jacky Montevirgen

Reputation: 317

SSRS Date format

I have a question regarding the date format in SSRS.

For Example I have data like this Sample I want to display the Days of the Week for the sample dates attached I want to get Sunday, Monday. Is it Possible? Then how? Thanks for your answers!

Upvotes: 0

Views: 123

Answers (1)

xcvd
xcvd

Reputation: 696

Yes, you can achieve this though the WeekdayName function with this expression on your cell: =WeekdayName( DatePart( "w", Fields!Date.Value ) )

Where Fields!Date.Value is the field in your dataset which contains the dates.

Upvotes: 1

Related Questions