@dyee4614
A sample usage of GroupBy looks like this
GroupBy(CityPopulations, "Country", "Cities")
The positional arguments have the meaning
GroupBy(Table, GroupByColumn1, NameOfNewGroupedColumn)
So for instance if you wanted to group your results by Crew you would do it like this. The grouped data would go in a column called MyNewColumn. Make sure you have double-quotes around the column names.
GroupBy(
Filter(
'Field Manager''s App',
Date=DatePicker2.SelectedDate,
Manager=FieldMan.Selected.Result
),
"Crew",
"MyNewColumn"
)
As for the autocomplete menu in your picture: yes those fields appear somewhere in the SharePoint List. It contains all of the possible choices for the grouping column.
Link to MS Docs for GROUPBY
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-groupby
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."