Hi all
I'm trying to email myself a list of Dynamics Accounts based on a filter. The filter should remove accounts that have a new_lastactivitydate field value within the last 30 days, leaving all accounts with a new_lastactivitydate field value older than 30 days.
I have the following odata string
new_lastactivitydate ge formatDateTime(addDays(utcNow(),-30),'yyyy-MM-dd')
But I get the following error:
An unknown function with name 'utcNow' was found. This may also be a function import or a key lookup on a navigation property, which is not allowed.
Does anyone know the correct syntax to filter out records with a new_lastactivitydate field value of less than 30 days from today?
Olly
Hello Team,
Here is a filter query that should help you out.
new_lastactivityDate ge addDays(utcNow(),-30)
This removes all records that are more than 30 days old w.r.t new_lastactivityDate.
If somehow I have confused your requirement you will still only need to play with greater than or less than here.
This has to solve your issue.
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!
Thanks for that. However I get the same error:
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 |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
19 | |
15 | |
10 | |
10 | |
9 |