Hello,
I have a Gallery that contains data about error reports. The gallery data is called "Table3.'Error No1' , Table3.'Error No2'....etc
This data is displayed as "OK" if there is no error or "Error" if there is.
I would like a label to display the amount of errors in the selected gallery item.
For example:
Gallery1.Selected:
Error No1 = OK
Error No2 = OK
Error No3 = Error
Error No4 = Error
Error No5 = OK
Error Count = 2 Errors
Any help would be appreciated.
Kyle
Solved! Go to Solution.
I believe your datasource will be like this:
[{Title:"Error No 1",IsError:"Error"},{Title:"Error No 2",IsError:"No Error"},{Title:"Error No 3",IsError:"No Error"},{Title:"Error No 4",IsError:"Error"}]
Gallery will be as attached pic:
Add a label outside gallery and display the Count as below formula:
CountRows(Filter(Gallery.AllItems,Label.Text="Error"))
I believe your datasource will be like this:
[{Title:"Error No 1",IsError:"Error"},{Title:"Error No 2",IsError:"No Error"},{Title:"Error No 3",IsError:"No Error"},{Title:"Error No 4",IsError:"Error"}]
Gallery will be as attached pic:
Add a label outside gallery and display the Count as below formula:
CountRows(Filter(Gallery.AllItems,Label.Text="Error"))
Hi @theapurva
I have Radio Button and textinput in gallery1.
Request you help me to count Gallery1 selected items only
Thanks & Regards