Scenario:
- Dropdown control
- Items property set to:
SortByColumns(
AddColumns(
Distinct(
colAllRecords,
PLN_STRT_DT
),
"planStartDateFormatted",
Text(Result, "[$-en-US]mm-dd-yyyy") //<---Formatting not being respected
),
"planStartDateFormatted",
Ascending
)
- Original PLN_STRT_DT is in ISO8601 datetime format ("2020-01-01T00:00:00Z")
- I'm trying to show a more user friendly format using ("01/01/2020")
- But the formatting is not being reflected in the Dropdown control

- Clearly seen here as well:

What am I missing?
Thank you