Hi @Tcmoseley ,
Simple example. On the OnCheck property of the Checkbox control, use:
Patch(
'Your Data',
ThisItem,
{'Your Yes No Column': true}
)
On the Uncheck property of your Checkbox control, use:
Patch(
'Your Data',
ThisItem,
{'Your Yes No Column': false}
)
On the Items property of the Gallery, enter:
Filter(
'Your Data',
'Your Yes No Column' = true
)
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution.
If you like my response, please give it a Thumbs Up.