I am having a problem with Match/Index results.
In my first set of data, I was able to pull all the data that matched 2 criteria using Match/Index with out any problem using this formula, (Each data entry was unique.)
=INDEX(DATA1,MATCH(DATA2,IF(RANGE1=DATA, RANGE2),0),1)
However, my second set of data had repeated entries. Each of these entries has a time stamp happening within the same day (see the example below)
Process Date/Time Product
1 3/1/2010 8:01 AM 1540
2 3/1/2010 8:10 AM 1541
1 3/1/2010 8:02 AM 1540
3 3/1/2010 8:15 AM 1542
1 3/2/2010 8:33 AM 1540
I need to pull what process number (1,2 or 3) product 1540 used on each date. There is usually only one process per product per day, but with multiple time stamps. I have the dates on separate columns and the list of products on rows. I need to analyze 6 months worth of data like these.
A pivot table sort of does the trick, but I still need to have the data displayed per day horizontally, like described in the paragraph above.
Thanks all for your help
In my first set of data, I was able to pull all the data that matched 2 criteria using Match/Index with out any problem using this formula, (Each data entry was unique.)
=INDEX(DATA1,MATCH(DATA2,IF(RANGE1=DATA, RANGE2),0),1)
However, my second set of data had repeated entries. Each of these entries has a time stamp happening within the same day (see the example below)
Process Date/Time Product
1 3/1/2010 8:01 AM 1540
2 3/1/2010 8:10 AM 1541
1 3/1/2010 8:02 AM 1540
3 3/1/2010 8:15 AM 1542
1 3/2/2010 8:33 AM 1540
I need to pull what process number (1,2 or 3) product 1540 used on each date. There is usually only one process per product per day, but with multiple time stamps. I have the dates on separate columns and the list of products on rows. I need to analyze 6 months worth of data like these.
A pivot table sort of does the trick, but I still need to have the data displayed per day horizontally, like described in the paragraph above.
Thanks all for your help