I have a list of indexes in this data. I want to group by WOxxx, then take the first (lowest index number) and only show that line in the result. I feel like I'm close with this, but not yet.
ClearCollect(SN_Test_DF_Filtered,
First(GroupBy(
SortByColumns(
Filter(SN_Test_DF_Idx, CompanySearch.Text in Company And
TypeSearch.Text in ValveType),
"SN",Ascending),
"WONum","SN2")))
SN ValveType Company WONum

So, I want this set reduced to these three lines.
35019.....
44372....
58589....