- 我有一个表,其中包含 YearMonth 列(201302)。
- 我创建了 YearMonth 一个参数。
现在我想在 SSRS 中编写一个表达式,这样每次报告运行时,日期和月份都会像这样Feb-2013。
您能否建议我为什么以下表达式不起作用。
谢谢
=CStr(Right(MonthName(Month(Parameters!NLR_YearMonth.Value)),3))
+ "-" +
Left(Year(Parameters!NLR_YearMonth.Value),4)
现在我想在 SSRS 中编写一个表达式,这样每次报告运行时,日期和月份都会像这样Feb-2013。
您能否建议我为什么以下表达式不起作用。
谢谢
=CStr(Right(MonthName(Month(Parameters!NLR_YearMonth.Value)),3))
+ "-" +
Left(Year(Parameters!NLR_YearMonth.Value),4)