I am working with an application (EHR system) and needs to bring records with in the specific date range in SSRS record. In the script I format the date variable and applies to the column.
Convert(varchar(10), @begdt, 101) + ' 00:00:00' and
Convert(varchar(10), @enddt, 101) + ' 23:59:59'
If I set the begin and end date to 01/01/2017 and 01/31/2017, then it pulls the records that are associated with 02/01/2017. Can anyone help me with this?