Hi
I am trying to display a pie chart by using this blog.
https://blog.atwork.at/post/Tips-for-PowerApps-8-Group-and-chart
I've a table ProjectThamesRequests and it has a lookup column called "Firm" which looks up to Firm.Title
I want to group by firm and display the number of requests per firm.
I try to do this ...
ClearCollect(RequestsByFirm,
AddColumns(
GroupBy(ProjectThamesRequests, "Firm","Rows"),
"RowCount",
CountRows(Rows)
)
);
but get the error "Function GroupBy has some invalid arguments"
Thanks
P