Let my first start by saying I am new to flow.....
I'm creating a flow to return activity records and want to filter on a related record but not sure the correct syntax to use in the Filter Query. I want to return all activities where the regarding field is a lead, and the lead status = disqualified.
Any initial direction/assistance would be greatly appreciated!
Solved! Go to Solution.
Hi @nicole-dynamics ,
Do you want to return all activities where the regarding field is a lead and the lead status is “Disqualified”?
Please check if the following flow will work for you.
After the button trigger, add action List records to get records from Leads entity, and use Filter query to filter out records that status is Disqualified:
Statuscode eq 4
Add List records 2 to get records from Activities, input the following code in Filter query field:
_regardingobjectid_value eq Lead
Hope this could be a reference for you.
Best regards,
Mabel
You can use the ODATA Filter queries for this one. Note that "=" is actually written as "eq" in the query. Also, kindly confirm what datatype if the field status? You will not be able to use the option names if it is an optionset, you will have to use the values here.
If the status value for disqualified is 1, the query will be Status eq '1'
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
Hi @nicole-dynamics ,
Do you want to return all activities where the regarding field is a lead and the lead status is “Disqualified”?
Please check if the following flow will work for you.
After the button trigger, add action List records to get records from Leads entity, and use Filter query to filter out records that status is Disqualified:
Statuscode eq 4
Add List records 2 to get records from Activities, input the following code in Filter query field:
_regardingobjectid_value eq Lead
Hope this could be a reference for you.
Best regards,
Mabel
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
Watch Nick Doelman's session from the 2020 Power Platform Community Conference on demand!
User | Count |
---|---|
40 | |
31 | |
28 | |
28 | |
27 |