我需要从报告的 2 个日期/时间参数(开始日期和结束日期)中获取月份和年份信息到文本框中。
我使用了以下表达式 -
=MonthName(Month(Parameters!StartDate.Value)) & Format(Year(Parameters!EndDate.Value)) & " to " & MonthName(Month(Parameters!EndDate.Value)) & Format(Year(Parameters!EndDate.Value))
把它变成像 2012 年 3 月到 2012 年 8 月这样的时间。
它有效,但是我不断收到以下警告:
[rsRuntimeErrorInExpression] The Value expression for the textrun ‘Textbox18.Paragraphs[0].TextRuns[0]’ contains an error: Conversion from type 'Date' to type 'Integer' is not valid.
有任何想法吗?
谢谢!