Forum Discussion
lukem1100
Oct 21, 2019Copper Contributor
Count Items in SharePoint List based on created by and date range, then send alert
Hi All, I'm working on creating a way to count the number of items in a SharePoint list that have been created by the same user, within a date rage, and then send an alert in flow based on that n...
mrehmat
Oct 21, 2019Brass Contributor
lukem1100 Why Flow? Try PowerShell. PS is object oriented and you can do much more and in a lot less time.
With Flow, you will have to query the list using Rest API for a specific date range, run a loop on allitems output to find unique users, their individual overall count.