Hi,
I have a collection in the power app which I created based on Groupby() which looks like following
ClearCollect(coltest,AddColumns('TimeSheet App_TimeEntries',"EMP",Employee.DisplayName));
ClearCollect(colc,GroupBy(coltest,"EMP","Week_x0020_Start","DATA"));

in the DATA table, I have a column called Total

I am wondering what is the best way to create a gallery which shows "EMP", "WeekStart" and "Sum(Total)" from the DATA table for each employee
Thank you so much!