Happy Monday! Please let me know what l' m missing or doing wrong. When I filter the dates, is out of order somehow.
Data source: Excel in OneDrive
Date time zone: Local
Here is my collection.
ClearCollect(
colUserTemp,
AddColumns(
Table1,
"First Name",
first_name,
"Last Name",
last_name,
"Company Name",
company_name,
"Today Date",
Text(Date,"[$-en-US]mm/dd/yyyy")
)
);
Gallery - Items Property:
Filter(
colUsersTemp,
DateValue('Today Date') >= dteStart.SelectedDate,
DateValue('Today Date') <= dteEnd.SelectedDate
)
When I check the collection is showing the first three as "12/31/2020".


Excel

As always thank you in advance.