Reputation: 317
I have a question regarding the date format in SSRS.
For Example I have data like this
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
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