formula for missed duew date by operator

kumar1803

Board Regular
Joined
Jan 7, 2015
Messages
110
Hello

I need help with a formula where I would like to count how many items have missed due date by operator. Here is my excel sheet look like:

Date Item
Description of action item
Operator
Due By
3/20/20151 Team Not Active
Manikant20-Apr

<colgroup><col><col><col><col><col></colgroup><tbody>
</tbody>
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Hi,

How do we tell from that whether an item has been completed, all it seems to tell us is that the item was due on 20 Apr?
 
Upvote 0
Sorry I missed the status column . It is after due date. We are marking them complete if completed prior to due date.
 
Upvote 0
Hi,

So let's say that when completed you enter completed in Col F. you can use this where G1 is the name you want to count.


=SUMPRODUCT((D2:D20=G1)*(F2:F20<>"Completed")*(E2:E20<TODAY()))
 
Upvote 0
I tried the above formula. I got "0" even for in progress. Keep in mind I would to like to see only those that are missed due date and still in progress.

DateItemDescriptionOperatorDue by StatusFormula
3/25/20151abcMan4/15/2015Completed0
4/15/20152xyzSHE4/19/2015Inprogress0
3/15/20153ttthes4/5/2015Inprogress0

<colgroup><col><col span="3"><col><col><col></colgroup><tbody>
</tbody>
 
Upvote 0
@MikeLH

Hi Mike, the board interprets the < symbol as a Html tag and so to get it to display correctly put a space after the < and ask the OP to remove the space.

=SUMPRODUCT((D2:D20=G1)*(F2:F20<>"Completed")*(E2:E20< TODAY()))

@kumar1803 You need another column/cell to lookup the operator names

Excel Workbook
ABCDEFGH
1DateItemDescriptionOperatorDue byStatusOperator LUformula
23/25/20151abcMan15/04/2015Completedhes1
34/15/20152xyzSHE19/04/2015InprogressSHE1
43/15/20153ttthes05/04/2015InprogressMan0
Sheet1
 
Upvote 0
Hi Mark

Thank you for quick response. In the example above, I see you have counted both "Completed" and :InProgress" . I would like to count only those " InProgress"
 
Upvote 0
Re-read it. It references the names in column G only as the Operator name to look up.
Man and SHE in Column D are both incomplete in column F and so have a count of 1. Man in column D is Completed in column F and so is 0.
 
Last edited:
Upvote 0
@MikeLH

Hi Mike, the board interprets the < symbol as a Html tag and so to get it to display correctly put a space after the < and ask the OP to remove the space.



@kumar1803 You need another column/cell to lookup the operator names

Excel Workbook
ABCDEFGH
1DateItemDescriptionOperatorDue byStatusOperator LUformula
23/25/20151abcMan15/04/2015Completedhes1
34/15/20152xyzSHE19/04/2015InprogressSHE1
43/15/20153ttthes05/04/2015InprogressMan0
Sheet1

Hmmm,

Well I just learnt something thanks.
 
Upvote 0

Forum statistics

Threads
1,214,429
Messages
6,119,428
Members
448,896
Latest member
MadMarty

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