Hello,
I have a canvas app that is used to create Document Change Requests. All change request are stored in a SharePoint list. When using the app to create a new change request, The app can tell a user if a change for the document they have selected is already in the list. This is to stop users logging duplicate requests. However, I need to be able to add a condition to the lookup that checks the status column (status is a choice column in the SharePoint list) and only notifies the user that there is an item if the status is not 'Change Completed' or 'Rejected'
Here is the formula now that notifies the user regardless of status:
If(!IsBlank(LookUp('Technical Change Requests','DocChange Name'=DataCardValue1.Text)),Notify("There is already a pending change for this document",ErrorSeverity.Warning,0)
What do I need to do to add the condition regarding the status?
Thank you in advance,