
Hello, I hope everyone is doing well.
I have a problem.
I need to create a button that deletes the last entry from my collection.
Currently, the button I created deletes the first entry.
ClearCollect(colPropuesta;Defaults(colPropuesta);{Organización:TextInputOrganizacion.Text;NombreApellido:TextInputNombreApellido.Text;Email:TextInputEmail.Text;ProductTitle:DropdownProducTitle.Selected;Cantidad:Value(TextInputCantidad.Text)})
Remove/Last should delete the last row of a collection:
Remove(colPropuesta,
Last(colPropuesta)
)