I have a sort button that sorts by a column called "date_different_format". Because of data type issues between Excel and PowerApps, the data is coming in from Excel as text, which means that the formula below sorts it as text rather than as a date.
I have a general inkling that I need to cram a DateValue() into the formula somewhere, but I cannot find a variation that doesn't end in lots of angry red and white x's replacing all my gallery content. Can anyone help? @Shanescows ?
SortByColumns(Search([@time_logs_1], EntrySearchBox.Text, "date_different_format", "project_id", "staff_person"), "date_different_format", If(SortDescending1, Ascending, Descending))