Hello Power Apps Community,
I know it is something simple. Shooting a blank this morning. I would like to exclude N/A from the gallery count.
Formula:
CountRows(
Filter(
Gallery2.AllItems,
!IsBlank(RadioYesNoOtherNA)
)
) & " of " & CountRows(Gallery2.AllItems) & " " & "Completed"
As always, Thank you in advance.
Solved! Go to Solution.
Try this:
CountRows(
Filter(
Gallery2.AllItems,
!IsBlank(RadioYesNoOtherNA),
Answer = "Yes" || Answer = "No" || Answer = "Other"
)
) & " of " & CountRows(Gallery2.AllItems) & " " & "Completed"
You'll want to add an argument to your Filter() to show the desired responses (other than N/A) for your CountRows().
If you can share the column name from your gallery's Items, we can help you build the exact syntax.
Hope that helps,
Bryan
Thank you so much @BCLS776 for the quick response. I have been under a lot of stress with this Solution.
Radio Button Name: RadioYesNoOtherNA
Radio Items: Table({Answer:"Yes", Value:"100"},{Answer:"No", Value:"0"},{Answer:"N/A", Value:"1"},{Answer:"Other"}).
Let me know if you i need an additional screen shot?
Try this:
CountRows(
Filter(
Gallery2.AllItems,
!IsBlank(RadioYesNoOtherNA),
Answer = "Yes" || Answer = "No" || Answer = "Other"
)
) & " of " & CountRows(Gallery2.AllItems) & " " & "Completed"
Ah, I see what I did wrong - can you change 'Answer' to whatever the name of the column is from Gallery2's Items? I'm assuming there is a field in that table that controls the radio button value for each item.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
User | Count |
---|---|
202 | |
100 | |
61 | |
59 | |
58 |
User | Count |
---|---|
254 | |
163 | |
90 | |
79 | |
70 |