Im currently working on a report in SQL 2005 and am pretty new to reports. I am using a "Start Date" and "End Date" for a user to select a reporting period.
For my "Start Date" I am using a Report Parameter "Default" value of:
=DateSerial(Year(Today()),Month(Today()),Day(Today()))
For my "End Date" I am using a ReportParameter Defulat value of:
=Now()
The user is displayed the following:
- Start Date: 06/01/2012
- End Date: 01/01/2012 12:33:03
PROBLEM: - I would like to DISPLAY the default time from the DateSerial function to the user (which is defaulted to midnight 00:00:00). Im just curious if this is possible in SQL 2005.