User created a bespoke report in SSRS and wanted to be able to retrieve some data between two dates, today + tomorrow with specific times
Used the dateadd field in ReportBuilder with the following to achive a date range between 10.00 today and 15.00 tomorrow against two different fields for the expression in dataset properties, filters for the planned start date and planned complete date fields
=dateadd(dateinterval.hour,10,datevalue(today()))
=dateadd(dateinterval.hour,15,datevalue(DateAdd(DateInterval.Day,+1,Today())))