Hello,
I have a gallery that has a button:
Remove(IdeaBox_1;ThisItem)
This delete an item.
But this has no warning or anything.
I am quiet new to PowerApps and making message boxes with rectangle is not an easy task for me, so I thought that I'll make a checkbox at the top of this gallery.

I want to update this delete button properties to work in accordance with this Checkbox1.
So i tried to do a formula like that:
If(Checkbox1.Value = true;false);;Remove(IdeaBox_1;ThisItem)
It does not spam any errors but this checkbox does not work. No matter what I do I can delete everything.
Other formula spams error:
If(IsBlank(Checkbox1.Value);Notify("Click checkbox before you try to delete.";NotificationType.Error);
Remove(IdeaBox_1;ThisItem)
I would love this second formula to works since it spams error and user will see what they have to do.
Could you please help me?