I have a date field in powerapps with backend as SharePoint list. The date is being shown in gallery using the below formula.
If(
ThisItem.Date_Posted = ThisItem.Modified_Date,
DateAdd(
ThisItem.Date_Posted,
0,
TimeUnit.Hours
),
(DateAdd(
ThisItem.Modified_Date,
0,
TimeUnit.Hours
) )
)
For some users, when they access the powerapp in Desktop, it shows dates as MM/DD/YYYY format whereas for all other users, it shows up in DD/MM/YYYY format which is the expected format. May I know how can I show the same format across all users?

Report
All responses (
Answers (