I want to create a new variable that will be the date picked from a date picker and the time from a dropdown.
The datepicker.SelectedDate is already in Date format, but the time from the dropdown is a text string
["9:00 AM","9:30 AM","10:00 AM..."4:30 PM","5:00 PM"]
I want to set a new variable on the press of a button to combine the two, preferably in Date/Time format.
I've tried setting the date to text and concatenating that string with the time string then converting that back to date/time, I've also tried
Set(NewDateTimeVariable, Datepicker.SelectedDate + TimeValue(Dropdown.Selected.Value))
but I get the error "Incompatible type. We can't evaluate your formula because the context variable types are incompatible with the types of values in other places in your app."
Any ideas?