Hi everyone. I am struggling with patching a collection (text column). The patch statement works correctly :
Patch(
colAVIssue,
First(
Filter(
colAVIssue,
varUserEmail = varUser.Mail
)
),
{SeverityLevel: "Emergency"}
)
However when I try to add an IF statement I get different errors based on what I am trying to accomplish. In a nut shell, if colAVIssue.Issue = "Complete Store Outage", I want to be able to patch "Emergency" to colAVIssue.SeverityLevel.
Hope this makes sense and thanks for the help!
Chris