在 SSRS 报告中显示 'M/d/yy, h:mm a' (6/15/15, 9:03 AM) 日期时间格式
Display 'M/d/yy, h:mm a' (6/15/15, 9:03 AM) datetime format in SSRS report
试过这不起作用 =FORMAT(Fields!Parameter.Value, "M/d/yy, h:mm a") --> 这给出了错误
=FormatDateTime(字段!Parameter.Value, DateFormat.ShortDate) & " "
& Hour(Fields!Parameter.Value) & ":" & Minute(Fields!Parameter.Value) ---> 这里我不能拉 ot AM/PM
您可以在 属性 window 中设置格式。
示例格式 - M/d/yyyy h:m tt
试过这不起作用 =FORMAT(Fields!Parameter.Value, "M/d/yy, h:mm a") --> 这给出了错误
=FormatDateTime(字段!Parameter.Value, DateFormat.ShortDate) & " " & Hour(Fields!Parameter.Value) & ":" & Minute(Fields!Parameter.Value) ---> 这里我不能拉 ot AM/PM
您可以在 属性 window 中设置格式。
示例格式 - M/d/yyyy h:m tt