Formula Help,

  • Thread starter Thread starter JimC
  • Start date Start date
J

JimC

Hi,
Wonder if anyone can help me.
I have a table of the following information:

No of parts MTBS MTBR CATEGORY
20 08:35:36
22 08:35:36 Same
30 08:47:10 00:11:34 Consecutive Runs
50 08:47:10 Same
90 09:02:35 00:15:25 Consecutive Runs
4 09:02:35 Same
7 09:14:13 00:11:38 Consecutive Runs
9 09:14:13 Same
4 11:16:34 02:02:21 Missing Runs
2 11:16:34 Same
5 11:28:11 00:11:37 Consecutive Runs

MTBS: Mean Time Between Steps
MTBR: Mean Time Between Runs

I am trying to find he number of parts between certain
time limits from the MTBR column into a new matrix like
the following to give me a percentage of parts going
through at certain time limits and also for each of the
categories: i.e. Consecutive Runs, Same, Missing Runs

Time Number of parts
0 to 5 mins 0
5 to 10 mins 0
10 to 20 mins 132

I have tried using an array formula like so:

=SUMIF(D22:D32,D32="Consecutive Runs",IF(C22:C32,<00:10:00)
(A22:A32))

But I am not to sure how to add in the time limits. I have
also never used array before and am not too sure if the
formula is correct or that I should be using an array. Any
suggestions welcome.

Regards
Jim
 
Frank,
This works for the small data table that was shown in the
example, when I run the formula into the lager table it
returns a value of #VALUE!
The formula used is
=SUMPRODUCT(--(AM2:AM4382="Consecutive Runs"),--
(AL2:AL4382<=TIME(0,10,0)),AB2:AB4382)
IS there a limit on the number of row that it can caculate?

Jim
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top