Thank you for the help. It is greatly appreciated. I have a couple of
questions... pasting the first formula gets me the SKU information;
however,t he second formula does not generate any information. What exactly
is the second formula calculating (which data)?
When pasting this formula, will I need to paste it in a cell for each
different SKU or is there a way to automate this entry?

Signature
J. Paul Long
Training Manager
The second formula goes to the right of the first formula (in the next
column.) It is calculating the total (384 for the first row of data.) Then,
just copy the formulas down. The second formula refers to the cells that the
first formula is in (to see if there is data in the cell next to it) so that
it only shows data when there is something in the previous column.
Let's see. Here is the data with the cells showing the results of the
formulas:
30478FJYPK20MIN EA 275 30478FJYPK20MIN 384
And here is the data with the cells showing the actual formulas (of course,
it is wrapping so take that into account. Hope this helps clear it up.
30478FJYPK20MIN EA 275 =IF(COUNTIF(OFFSET(D$2:D3,-1,0),A3)>0,"",A3) =IF(COUNTIF(A$3:A$15,D3)>0,SUMIF(A$3:A$15,D3,$C$3:$C$15),"")
> Thank you for the help. It is greatly appreciated. I have a couple of
> questions... pasting the first formula gets me the SKU information;
[quoted text clipped - 54 lines]
> > > then have the formula calculate a total for all the like SKUs...? I'm
> > > totally lost on what will work...
Kleev - 08 Dec 2005 22:06 GMT
After looking over your questions again, I guess I should have mentioned that
the formulas do not repeat data so you can copy them to consecutive rows
without worrying about SKUs or totals repeating. Also, just to clarify, the
data and formulas I used started in row 3. I'll paste a couple of rows and
include Column and row labels to see if that helps. Also, I assume you know
that the ranges I used were representative of the test data and would need to
be expanded for your data.
A B C D E
3 30478FJYPK20MIN EA 275 30478FJYPK20MIN 384
4 30478FJYPK20MIN EA 21
5 30478FJYPK20MIN EA 85
6 30478FJYPK20MIN EA 3
7 30518FRTRP SET 2 30518FRTRP 2
8 30518FRTRPHC SET 4 30518FRTRPHC 4
9 3068FM100 EA 358 3068FM100 366
10 3068FM100 EA 8
11 3068SPEM4P EA 112 3068SPEM4P 112
12 3068SPEM4P20MIN EA 275 3068SPEM4P20MIN 363
13 3068SPEM4P20MIN EA 85
14 3068SPEM4P20MIN EA 3
15 3068SPEN4P20MIN EA 21 3068SPEN4P20MIN 21
And now just 2 rows with the formulas showing:
A B C D E
3
30478FJYPK20MIN EA 275 =IF(COUNTIF(OFFSET(D$2:D3,-1,0),A3)>0,"",A3) =IF(COUNTIF(A$3:A$15,D3)>0,SUMIF(A$3:A$15,D3,$C$3:$C$15),"")
4
30478FJYPK20MIN EA 21 =IF(COUNTIF(OFFSET(D$2:D4,-1,0),A4)>0,"",A4) =IF(COUNTIF(A$3:A$15,D4)>0,SUMIF(A$3:A$15,D4,$C$3:$C$15),"")
HTH
> The second formula goes to the right of the first formula (in the next
> column.) It is calculating the total (384 for the first row of data.) Then,
[quoted text clipped - 67 lines]
> > > > then have the formula calculate a total for all the like SKUs...? I'm
> > > > totally lost on what will work...