DatePicker
control in PowerApps might be defaulting to a specific date format based on your locale settings. When editing the app, it might apply your chosen format, but when the app is published, it defaults to a system format (e.g., "Fri, Dec 27, 2024") which might not be the one you expect.Text
function to format the date explicitly. Instead of relying on the default format of the DatePicker
, try setting the Text
property of the DatePicker
to a specific format like:
MM/DD/YYYY
vs DD/MM/YYYY
), which can lead to inconsistent formatting behavior.Text(DatePicker.SelectedDate, varLocale & "yyyy-mm-dd")
to apply a consistent date format based on your preferred locale.DatePicker
control to reset its properties.
WarrenBelz
106
Most Valuable Professional
MS.Ragavendar
73
stampcoin
52