Hi all,
Hoping someone can see a solution to this issue:
I have a date time column in SharePoint (Booked In Time) and regional settings are set to Australia with format of dd/mm/yyyy.
In my PowerApp, I am using a date picker with two dropdowns (for hours and minutes).
I have a label that displays with this code:
Text(DateValue1_4.SelectedDate, "dd-mm-yyyy") & " " & Text(HourValue1_4.Selected.Value, "00") & ":" & Text(MinuteValue1_4.Selected.Value, "00")
For the patch, I use the following to convert a text string to date time value: 'Booked Time In' DateTimeValue(lblDateTimeValueBooked.Text)
In SharePoint though, the column displays mm/dd/yyyy
Although the settings on the date picker shouldn't matter due to the string to date time conversion, I have the Language property as "en-AU" and the Format to "dd/mm/yyyy"
not sure why it won't maintain the correct format?