I have a PowerApps form that sets the date and time for a SharePoint list item. The update property for the data card is shown below, referencing the three controls on the card.
Until today, this had been working fine for thousands of items entered but since daylight savings time (I'm in Eastern Standard time zone), this method of combining the date, hour & minute results in a time that is one hour ahead of the correct time.
//update property of datacard
DateValue3_1.SelectedDate +
Time(
Value(HourValue3_1.Selected.Value),
Value(MinuteValue3_1.Selected.Value),
0
)
For example, the user enters 3/10/20019 08:44 as shown below and the SharePoint list item is updated to 3/10/20019 09:44
