["06 AM","07 AM","08 AM","09 AM","10 AM","11 AM","12 PM","1 PM","2 PM","3 PM","4 PM","5 PM","6 PM","7 PM","8 PM","9 PM","10 PM"]
// This expression checks if the 'Default' property of the parent control is not blank. If it is not blank, it converts the 'Default' value to a formatted time string in "hh:mm AM/PM" format for the "en-US" locale. Otherwise, it returns an empty array.
If(
!IsBlank(Parent.Default),
[
Text(
DateTimeValue(Parent.Default),
"hh:mm AM/PM",
"en-US"
)
],
[]
)
// This expression updates the context variable `loc_AmPm` based on the selected value, converting specific AM/PM time strings into their corresponding 24-hour format representations.
UpdateContext(
{
loc_AmPm: Switch(
Self.Selected.Value,
"06 AM", "06",
"07 AM", "07",
"08 AM", "08",
"09 AM", "09",
"10 AM", "10",
"11 AM", "11",
"12 PM", "12",
"1 PM", "13",
"2 PM", "14",
"3 PM", "15",
"4 PM", "16",
"5 PM", "17",
"6 PM", "18",
"7 PM", "19",
"8 PM", "20",
"9 PM", "21",
"10 PM", "22"
)
}
)
// This expression checks if the selected date from the 'dte_DatePicker' control is not blank. If it is not, it creates a new date-time value using the year, month, and day from the selected date, along with the hour value converted from 'loc_AmPm', the minute value from 'drp_Minutes', and the second value from the selected date.
If(
Not IsBlank(dte_DatePicker.SelectedDate),
DateTime(
Year(dte_DatePicker.SelectedDate),
Month(dte_DatePicker.SelectedDate),
Day(dte_DatePicker.SelectedDate),
Value(loc_AmPm),
Value(drp_Minutes.Selected.Value),
Second(dte_DatePicker.SelectedDate)
)
)
Users come to the Power Up Program forum when they struggle with the program.
Thank you for sharing.
WarrenBelz
146,513
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,688
Most Valuable Professional