Tag Archives: Filter Query
Using āstartswithā Filter Query in MS Flow
Introduction This blog explains how to use āstartswithā filter query in MS Flow. Use Case Using MS Flows to retrieve the bunch of students whoās mobile numbers begin with +91 and send them a text (using Twilio connector) regarding the Top Indian Universities. The āstarts withā filter query in MS Flows allows to easily achieve this functionality. Steps to be Followed: We will use āDynamics 365 ā List recordsā Actions. Enter the Organization Name and select the entity. Filter Query: startswith(new_phonenumber,’+91′) ānew_phonenumberā is the logical name of the field which stores the phone number of students. ā+91ā is the value of phone number by which we want to filter the retrieved student list. Enter the above query in Filter Query: Run the flow to test.It will return all the students whose phone number starts with ā+91ā
Using ācontainsā Filter Query in MS Flow
Introduction This blog explains how to use ācontainsā filter query in MS Flow. Use Case Retrieve all the Accounts whose name contains ācloudā. Steps to be Followed: We will use āDynamics 365 ā List recordsā Actions. Enter the Organization Name and entity.Filter Query: contains(name,’cloud’) name is the logical name of the field which stores the account name. ācloudā is the value of account name by which we want to filter the retrieved account list. Enter the above query in Filter Query: Run the flow to test.It will return all the account whose name contains ācloudā.