I need to specify time in datetime parameters in reporting services. I have two parameters as startdate and enddate, when user selects the startdate and enddate. The reporting services automatically specifies time as 12:00:00 and I want to change to have some default time instead 12:00:00 and Also, I am calling a stored procedure with parameters.
Share
If the parameters are passed to a Stored Procedure then, update the value to add a default time before using it in the query.
You can do it in two ways
The above add 06:30:45 to the @StartDate parameter.
You can do the same with the @EndDate parameter.