Hi there,
Quick question here?
I have a gallery with a couple of labels, one of the labels is the result of a radio button with items "Single" and "Double" I would like to add outside of that gallery to labels to show the total value of:
Total Singles :
Total Doubles:
Could someone point me in the right direction?
Thanks in advance
Solved! Go to Solution.
Yes,
But let's say your radio box (let's call it Radio1) that is within the gallery looks like this:
ie: where Items = [ "Single", "Double" ]
so your filters would be:
Num where Radio is Single: CountRows( Filter( Gallery1.AllItems, Radio1.Selected.Value = "Single" ) )
You'll want to double check the syntax in the filter, but I believe this is correct.
If the name of the gallery is Gallery1, you can (outside of the gallery) get the number of items in the gallery using:
CountRows( Gallery1.AllItems )
The AllItems here is the key as it references each "row" in the gallery. I'd imagine you could use Gallery1.AllItems and filter it before doing the CountRows() in order to see how many of each were "single" or "double".
Hope this helps!
Hi sajarac
As an idea you could define a variable when each radio button is selected, then use the CountRows function to count rows in the gallery that is filtered by that variable / radio button selection?
Radio button OnSelect:
UpdateContext({ItemSelection: Radiobutton.Selected.Value})
Then the row count might be displayed in a label with Text:
CountRows(Filter(Collection, [Column used to determine Single/Double] = ItemSelection))
Wow, thank you very much for this prompt response.
So you mean apply two filters?
Yes,
But let's say your radio box (let's call it Radio1) that is within the gallery looks like this:
ie: where Items = [ "Single", "Double" ]
so your filters would be:
Num where Radio is Single: CountRows( Filter( Gallery1.AllItems, Radio1.Selected.Value = "Single" ) )
You'll want to double check the syntax in the filter, but I believe this is correct.
Thank you very much for your prompt response!!!
Glad to be of help. I was working in a gallery this evening (see my other post) and this was easy for me to try at the time. 🙂
User | Count |
---|---|
197 | |
125 | |
88 | |
49 | |
42 |
User | Count |
---|---|
285 | |
162 | |
138 | |
76 | |
73 |