Isaac
Lifelong Learner
- Local time
- Today, 09:07
- Joined
- Mar 14, 2017
- Messages
- 10,839
Just to get this forum started with some searchable information!
I had a Flow that gets items from a Sharepoint list. In the GetItems step, I wanted to filter and only get records where the column DateEmailSent was null or blank.
Many things did not work that seemed like they should according to various articles I came across on the Microsoft forum. What eventually worked was typing this directly into the ODATA filter box:
Notes:
I had a Flow that gets items from a Sharepoint list. In the GetItems step, I wanted to filter and only get records where the column DateEmailSent was null or blank.
Many things did not work that seemed like they should according to various articles I came across on the Microsoft forum. What eventually worked was typing this directly into the ODATA filter box:
Code:
(DateEmailSent eq null)
Notes:
- The parenthesis were required
- null had to be in lowercase
- Building this expression using dynamic content for DateEmailSent and Null, and then placing: a space, then eq, then a space, in between the two dynamic contents, did not work