microflow to exclude the status that are “Cancelled” and “Draft”

0
Hi Experts,   I want to filter the search result based on the status. Example: if I search for a list based on Name, Description and Status A list will be displayed out with the other statuses excluding cancelled and draft   I have build the microflow for the search logic with conditions How can I add the logic flow in this microflow to exclude the status that are “Cancelled” and “Draft”?    
asked
1 answers
1

Hi Renee,

In the database retrieve for the CMDB entity, you can set:

[status != ‘Cancelled’ and status != ‘Draft’]

Hope this helps!

answered