Hi, I have a date picker, I want to take the date from that and add a time string to to to make a datetime. 1st attempt looked something like this:
Datetimevalue(datePicker1.selectedDate && " 15:00")
But with this I get an error as the datepicker date is actually a datetime with the time component being "00:00". I tried datevalue(datepicker1.selectedDate) but no change. I know I can do something like "Text(Left(datePicker1.selectedDate,Len(datePicker1.selectedDate)-5))to remove the "00:00", but I feel like I must be missing the intended way of doing it, as it seems like adding a time to a date from a date picker is something that would happen a lot and there'd be a more elegant way of achieving it. Any thoughts? Thanks