0

I need to create a report that allows the user to give a date and time range for a report. I can set up the StartDate and EndDate (DateTime data type), but I can't seem to figure out how to add StartTime and EndTime.

This is a report where they want to view what was processed between a certain date and time. Is there anything that I can do so that the user can choose/enter a value for time in a report?

4

1 回答 1

1

正如@WillA 在评论中提到的,SSRS 中没有日期+时间选择器。但是,带有 DateTime 参数的日期选择器确实允许手动输入时间组件。

首先,如果您在选择器中仅选择一个日期,会发生以下情况:

只选择一个日期

如果您在具有格式 string 的 TextBox 中呈现它HH:mm:ss, MMM d `yy,这将变为:

2012 年 12 月 9 日 00:00:00

但是,如果用户手动:'( 输入时间组件,它将起作用,例如

也选择一个时间

这将被渲染(使用相同的格式),如下所示:

2012 年 12 月 9 日 15:27:00

虽然这不是一个非常用户友好的解决方案。

于 2012-12-09T17:21:02.637 回答