
Hello,
I have a list box with 6 items "errors" in it as well as a "score" text box. I want to have it when an item is selected in the list box, it is subtracted from the overall score in the text box (i.e. 6 - 1 = 5, etc.), but have yet to be successful at completing this. Anyone have any ideas? I am still very new to Power Apps, so just looking for a simple approach to solve this one. Thank you!
Try this in the Text property of a label. My assumption is your ListBox shows 6 items within it.
CountRows(ListBox1.AllItems)-CountRows(ListBox1.SelectedItems)
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."