Hi @PAJ,
Could you please tell me how you set the Items property pof your Gallery?
This decides how you refer to gallery selected assignee name and Priority.
AddColumns(GroupBy(Filter(data,'Assignee Name'=Gallery.Selected.'Assignee Name'),"Priority","PG"),"PCount",CountRows(PG))
Note that you need to refer to correct returned column name in your Gallery, I refer to 'Assignee Name' directly, you need to check how you set the Text property of the Label where you display 'Assignee Name', the field name after ThisItem is the real field name you need to refer to.
Same as Type PieChart:
AddColumns(GroupBy(Filter(data,'Assignee Name'=Gallery.Selected.'Assignee Name'),"Type","TG"),"TCount",CountRows(TG))