I have one workbook. The workbook has 12 sheets.
Each sheet is named something like Bob Smith,. Jim Jones etc.
Each sheet has one named table , Table1, Table2, etc
Each table has a Status column with status like Open, Closed, Pending
I have a Dashboard Sheet. I want a formula that would go through each table and count the number of Closed. I also want to count the number of Open and Pending. Each count in a different cell.
Example: Sheet1!table1 has 4 "Closed" Sheet2!Table2 has three "Closed" . If those are the only sheets that have a status of Closed, then the formula would provide the value of 7.
I’ve been messing with Indirect and CountIF but I can’t seem to figure it out.

countifs( table1[status],"Closed") + countifs(table2[status],"Closed")Not a very exciting solution, but one available since tables are named ranges. You could also query all of the tables into a single query via Power Query and have it output a count by the status values or do the countifs against the aggregate query table.