SOLVED

Count Items in SharePoint List based on created by and date range, then send alert

Copper Contributor

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 number being above a certain amount.

 

I've been able to count all items using flow and send an email alert containing that overall count, but haven't been able to figure out how to count based on created by and date range.

 

Any ideas would be greatly appreciated!!

1 Reply
best response confirmed by lukem1100 (Copper Contributor)
Solution

@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.

1 best response

Accepted Solutions
best response confirmed by lukem1100 (Copper Contributor)
Solution

@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.

View solution in original post