レポートの 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.
何か案は?
ありがとう!