Hey, I have been on the journey of developing my first app and I'm trying to figure out how to make a specific sort based on a status of the checkbox and the collection.
The currently sort of the gallery is:
Sort(
Filter(
PreInventarioPowerApps, STATUS.Value = "Por asignar",
StartsWith(SERIAL, SerialSearchInventario_Input.Text) || IsBlank(SerialSearchInventario_Input.Text)
), Modified, SortOrder.Descending
)
and I have a checkbox that on check is collecting the items that are being checked in the property "oncheck" and left out when uncheck.
the property oncheck looks like:
Collect(colDataPorAsignar, ThisItem)
The thing is that I want the gallery to show first the ones that haven't been checked and then the ones already checked.
I would really aprecciate if anyone could help me with this one

Image for reference