Hello all,
I am trying to build a flow that extracts the count of various values from a SharePoint table and updates these values into a new row of an excel table.
The SharePoint table contains multiple columns. One column contains the status of the entry and has the value either 'Open' or 'Closed'
I successfully counted the total number of entries (or rows) in the SharePoint table using 'Get Items' and 'Compose' and deposited this value into my excel table.
I need to extract the number of entries in the Status column that have the value 'Open'. From this I can then derive the number of entries that are 'Closed'.


As you can see above my current method takes a long time to run.
Also, the filter array block correctly filters all of the 'Open' entries, but I need the number of these, and I can't figure out how to output this. FYI: After counting the number of entries myself in the output I get the expected number.
Does anybody have a solution?