Hi @Big_S ,
Aha. This changes things a bit. It looks like you have one DataCard/Group with three values (date, hour, minute)(?).
- Use Concatenate Function to combine Hour/Min dropdowns along with the ":"
- Use Text Function to convert the combined text to time(7) format
- Then patch this value to each Time column accordingly
- You might also experiment with the PowerApps Time Function
- I don't think there would be anything special required for Patching the Datepicker date.
You might also consider combining the date and time columns into a single:
I dont' directly use time(7) in SQL but rather datetime(2) then parse things on the display/analysis end to peel out times as needed. I also like datetimeoffset. It basically holds users local time, UTC, and timezone all in a single column.
Again, might be 1/2 dozen of one 6 of the other as you may have to parse these on the display/analysis end (data visualization) to compare certain values.
Good luck!