我对SSRS中的日期格式有疑问。
例如,我有这样的数据
我想显示我想要获得的样本日期的星期几Monday
,// Will get the state from the first-level cache if already present in the session:
var entity = Session.Get<EntityType>(entityId);
// Line below will update the entity with the current state from the database:
Session.Refresh(entity);
。
可能吗?那怎么样?谢谢你的回答!
答案 0 :(得分:1)
是的,你可以通过你的单元格中包含此表达式的WeekdayName
函数实现此目的:
=WeekdayName( DatePart( "w", Fields!Date.Value ) )
其中Fields!Date.Value
是数据集中包含日期的字段。