trying to remove the getting your data... on blank filters replacing with a label.
Filter is not working correctly.
If(IsEmpty(Filter(SPList,ID=SharePointIntegration.Selected.ID), true, false)
)

trying to remove the getting your data... on blank filters replacing with a label.
Filter is not working correctly.
If(IsEmpty(Filter(SPList,ID=SharePointIntegration.Selected.ID), true, false)
)
Just from this, it looks like perhaps you've misplaced a closing bracket in your if function.
However, since IsEmpty already returns a true/false value, If() is usable, but not necessary.
Maybe try something like:
IsEmpty(Filter(SPList,ID=SharePointIntegration.Selected.ID))
Hope this helps!