Help Counting Outstanding Assignments

hooty1222

New Member
Joined
Sep 18, 2018
Messages
1
I have a workbook to chart assignments given to 30 or so subcontractors. Each contractor has a tab within the book. The table in each tab the following column headers: Lease #, Date Ordered, Date Due, Date Received.

I'd like an index page that shows a column with each of the contractors name and column that shows the number of assignments outstanding for that particular contractor, with 'outstanding' meaning that there has been a Date Due entered, but no Date Received entered. Everything I've tried has resulted in "0" being returned.

Any help would be appreciated!
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
Hi, on the new summary sheet we need a column that has the exact tab name of each contractor. For our example, let's assume you put the contractor tab names column in column A starting at A2 with the header in A1.
Further, let's assume on each of the contractor tabs the due date column is column A and the date received column is B.
Back on the Summary sheet, in the adjacent column to the contractor tab names, we have this code:

Code:
=COUNTA(INDIRECT("'" & A2 & "'!A:A"))-COUNTA(INDIRECT("'" & A2 & "'!b:b"))


Dragdown formula. Modify to your needs
 
Upvote 0

Forum statistics

Threads
1,216,085
Messages
6,128,732
Members
449,465
Latest member
TAKLAM

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top