Hi everyone. Need help with nested functions. When I pull in a gallery using the following formula:
Sort(GroupBy(DepotPlacedOrders,"Part","DATA"),Part,Ascending)
I get exactly what I need. I am trying to turn it into a collection and add date pickers. When I use this formula
ClearCollect(colRollup,Filter(Sort(GroupBy(DepotPlacedOrders,"Part","Created","DATA"),Part,Ascending),(Created>=dpStartRollup.SelectedDate Or IsBlank(dpStartRollup.SelectedDate)) And (Created<=DateAdd(dpStopRollup.SelectedDate,1,Days) Or IsBlank(dpStopRollup.SelectedDate))))
Its ALMOST perfect, it just does not group by the column "Part" . Everything else appears to work correctly. The date picker works properly.
Any help would be appreciated!
Chris