Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default How many delayed per week

Item Contract Delivery Planned Delivery
a 2008-47 2008-48
b 2008-48 2008-48
c 2008-47 2008-47
b 2008-49 2008-50
a 2008-50 2008-50
b 2008-47 2008-50
c 2008-47 2008-47
b 2008-51 2008-51
a 2008-51 2008-51
a 2008-46 2008-49
c 2008-48 2008-48
b 2008-49 2008-51
a 2008-49 2008-49
c 2008-50 2008-50

Week Total Delayed per week
2008-46 Formula???
2008-47 Formula???
2008-48 Formula???
2008-49 Formula???
2008-50 Formula???
2008-51 Formula???

I've got this information. What formula can I use to display how many items
are delayed per week? I intend to use this information to make an overview
over delayed items and the progress on the backlog.

Hope anyone understand my question and can help me.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default How many delayed per week

Kriss,

from your posted example what answer do you expect to get for this week?

2008-49 Answer?


Mike

"Kriss" wrote:

Item Contract Delivery Planned Delivery
a 2008-47 2008-48
b 2008-48 2008-48
c 2008-47 2008-47
b 2008-49 2008-50
a 2008-50 2008-50
b 2008-47 2008-50
c 2008-47 2008-47
b 2008-51 2008-51
a 2008-51 2008-51
a 2008-46 2008-49
c 2008-48 2008-48
b 2008-49 2008-51
a 2008-49 2008-49
c 2008-50 2008-50

Week Total Delayed per week
2008-46 Formula???
2008-47 Formula???
2008-48 Formula???
2008-49 Formula???
2008-50 Formula???
2008-51 Formula???

I've got this information. What formula can I use to display how many items
are delayed per week? I intend to use this information to make an overview
over delayed items and the progress on the backlog.

Hope anyone understand my question and can help me.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default How many delayed per week

My hope is to get an answer that tells me how many items are delayed this week.
Meaning how many are supposed to be delivered but are not.

2008-49 4

These items:
b 2008-49 2008-50
b 2008-47 2008-50
a 2008-46 2008-49
b 2008-49 2008-51

"Mike H" wrote:

Kriss,

from your posted example what answer do you expect to get for this week?

2008-49 Answer?


Mike

"Kriss" wrote:

Item Contract Delivery Planned Delivery
a 2008-47 2008-48
b 2008-48 2008-48
c 2008-47 2008-47
b 2008-49 2008-50
a 2008-50 2008-50
b 2008-47 2008-50
c 2008-47 2008-47
b 2008-51 2008-51
a 2008-51 2008-51
a 2008-46 2008-49
c 2008-48 2008-48
b 2008-49 2008-51
a 2008-49 2008-49
c 2008-50 2008-50

Week Total Delayed per week
2008-46 Formula???
2008-47 Formula???
2008-48 Formula???
2008-49 Formula???
2008-50 Formula???
2008-51 Formula???

I've got this information. What formula can I use to display how many items
are delayed per week? I intend to use this information to make an overview
over delayed items and the progress on the backlog.

Hope anyone understand my question and can help me.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 53
Default How many delayed per week

please try this

=IF(COUNTIFS($B$2:$B$15,A17)=COUNTIFS($B$2:$B$15, A17,$C$2:$C$15,A17),COUNTIFS($B$2:$B$15,A17)-COUNTIFS($B$2:$B$15,A17,$C$2:$C$15,A17),COUNTIFS($ B$2:$B$15,A17,$C$2:$C$15,A17))


the values for
my assumptions:

item, contract delivery planned delivery are entered till row 15th and
weeks like 2008-46 and more are entred in cell a17 and below.

--
Kind Regards,
Satti Charvak
Only an Excel Enthusiast
Noida, India


"Kriss" wrote:

My hope is to get an answer that tells me how many items are delayed this week.
Meaning how many are supposed to be delivered but are not.

2008-49 4

These items:
b 2008-49 2008-50
b 2008-47 2008-50
a 2008-46 2008-49
b 2008-49 2008-51

"Mike H" wrote:

Kriss,

from your posted example what answer do you expect to get for this week?

2008-49 Answer?


Mike

"Kriss" wrote:

Item Contract Delivery Planned Delivery
a 2008-47 2008-48
b 2008-48 2008-48
c 2008-47 2008-47
b 2008-49 2008-50
a 2008-50 2008-50
b 2008-47 2008-50
c 2008-47 2008-47
b 2008-51 2008-51
a 2008-51 2008-51
a 2008-46 2008-49
c 2008-48 2008-48
b 2008-49 2008-51
a 2008-49 2008-49
c 2008-50 2008-50

Week Total Delayed per week
2008-46 Formula???
2008-47 Formula???
2008-48 Formula???
2008-49 Formula???
2008-50 Formula???
2008-51 Formula???

I've got this information. What formula can I use to display how many items
are delayed per week? I intend to use this information to make an overview
over delayed items and the progress on the backlog.

Hope anyone understand my question and can help me.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,358
Default How many delayed per week

I believe this formula will work for you, and it will also work in xl2003
(the countifs function is xl2007).
=SUMPRODUCT(--(LEFT($B$2:$B$15,4)&RIGHT($B$2:$B$15,2)<=LEFT(E17, 4)&RIGHT(E17,4)),--(LEFT($C$2:$C$15,4)&RIGHT($C$2:$C$15,2)=LEFT(E17, 4)&RIGHT(E17,2)),--(LEFT($C$2:$C$15,4)&RIGHT($C$2:$C$15,2)LEFT($B$2: $B$15,4)&RIGHT($B$2:$B$15,2)))

Obviously, expand the range as needed.

--
** John C **

"Kriss" wrote:

My hope is to get an answer that tells me how many items are delayed this week.
Meaning how many are supposed to be delivered but are not.

2008-49 4

These items:
b 2008-49 2008-50
b 2008-47 2008-50
a 2008-46 2008-49
b 2008-49 2008-51

"Mike H" wrote:

Kriss,

from your posted example what answer do you expect to get for this week?

2008-49 Answer?


Mike

"Kriss" wrote:

Item Contract Delivery Planned Delivery
a 2008-47 2008-48
b 2008-48 2008-48
c 2008-47 2008-47
b 2008-49 2008-50
a 2008-50 2008-50
b 2008-47 2008-50
c 2008-47 2008-47
b 2008-51 2008-51
a 2008-51 2008-51
a 2008-46 2008-49
c 2008-48 2008-48
b 2008-49 2008-51
a 2008-49 2008-49
c 2008-50 2008-50

Week Total Delayed per week
2008-46 Formula???
2008-47 Formula???
2008-48 Formula???
2008-49 Formula???
2008-50 Formula???
2008-51 Formula???

I've got this information. What formula can I use to display how many items
are delayed per week? I intend to use this information to make an overview
over delayed items and the progress on the backlog.

Hope anyone understand my question and can help me.



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows - Delayed Write Failed Stephen C Excel Discussion (Misc queries) 1 December 13th 06 03:05 PM
Delayed Update? Ray Charts and Charting in Excel 1 September 26th 06 05:57 PM
Delayed reactions Not too genius! Excel Discussion (Misc queries) 1 September 13th 06 05:36 AM
Delayed reactions Not too genius! Excel Discussion (Misc queries) 1 September 12th 06 10:39 PM
Delayed start-up due to xlb file of other version? c mateland Excel Discussion (Misc queries) 0 April 29th 06 05:26 PM


All times are GMT +1. The time now is 02:14 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"