Hi guys, I have N Sharepoint List in my App.
I need to deal with delegation warnings in this code:
If(
stringPermitAsign = "H1",
Filter(
ListH1,
Deleted = false &&
Linked = Blank() && <-- The warning is in this ampersand
!IsBlank(LookUp(AuxiliarList, PermitID = Title, Status <> "Draft"))
),
stringPermitAsign = "H2",
...
)
I need to show in a gallery the items that accomplish this requirements:
- Deleted column value FALSE
- Linked column value BLANK
- It exists in other list (AuxiliarList), the column PermitId is equals to Title and Status is not Draft.
Thank you so much