Hi all, I have been going at this for a while. I have a list with the data shown in a gallery:
Name, Award Amount, Month, and Date Awarded. I was able to create a radio control where when the Month is selected, the filter will show only items for that month. Works great, but has a delegation to pop up. The issue is, that a person can be awarded more than once in a month, and I want to show the total awarded in the Awarded column instead of displaying multiples. How would I update the filter to show this? I'm stuck on using Groupby with Sum.
Filter used on gallery : Filter(Awards,Text(Created,"[$-en-US]mmmm") = Radio1.Selected.Value)
In the screenshot, the gallery displayed with radio control:

The second question is, how can I avoid the delegation warnings showing on my total awarded, and total people awarded?
Filter used to show total awarded for the month on the right: Sum(Filter(Awards,Text(Created,"[$-en-US]mmmm") = Radio1.Selected.Value), 'Amount Awarded')
Filter used to display total awarded people:
CountRows(Filter(Awards,Text(Created,"[$-en-US]mmmm") = Radio1.Selected.Value))
Any help would be greatly appreciated!