I have nested galleries and I need to do a filter where only the Equipment is displayed for the current logged in user.
Currently this is my GroupBy code on the Parent Gallery, I want to group also by Year, which is a field in my SharePoint list. However, I do not know how to do the second groupby and how to use it in the child gallery.
GroupBy(
AddColumns(
Filter(
colEquip,
User().Email=CurrentUser.Email),
"EmpName",EmployeeName),
"EquipmentType",
"Data")
Any help would be appreciated.