Hi @SpongYe
Thank you for the reply.
This is my current format:
DateTimeValue(
Text('dpFrom FDRS'.SelectedDate, "[$-en-GB]mm/dd/yyyy") & " " & FDStartColumn),
The code for FDStartColumn is:
Set(
FDStartColumn,
Switch(
FromDayOfWeek,
2, Text(LookUp('Holiday Data', Title = SelectedUser).MonStart, "[$-en-GB]hh:mm"),
3, Text(LookUp('Holiday Data', Title = SelectedUser).TuesStartCalc, "[$-en-GB]hh:mm"),
4, Text(LookUp('Holiday Data', Title = SelectedUser).WedStartCalc, "[$-en-GB]hh:mm"),
5, Text(LookUp('Holiday Data', Title = SelectedUser).ThursStartCalc, "[$-en-GB]hh:mm"),
6, Text(LookUp('Holiday Data', Title = SelectedUser).FriStartCalc, "[$-en-GB]hh:mm")
)
);
I tried using "DateTimeFormat.ShortDateTime24" as per the article you linked but this threw an error in the mobile version; stating the From column was required. It worked fine on the Desktop version though.
I changed the "Date Time Zone" on my Date Picker from Local to UTC which improved things, the date was only out by one day but the difference between UTC and my Local time is only 1 hour.
Still stumped 😟