When a text file is downloaded, it groups items such as
Part Desc Dept Qty
The problem is that in the text file say part A is listed in 3 different depts then it looks like:
Part Desc Dept Qty
A El 1 1
2 4
9 6
Totals: 11
B C2 2 3
6 1
Totals: 4
What I am looking for is a way to have the part and desc repeat for the other 2 lines (or how many needed). This is then exported into access for reports but I need to have the part and desc on all the appropriate lines.
I have tried this as a step process but it only works if the part is repeated only once:
step 1:
=IF(RIGHT(F603,5)="tals:","",A603)
step 2:
=IF(M604="","",IF(M604=0,M603,M604))
Part Desc Dept Qty
The problem is that in the text file say part A is listed in 3 different depts then it looks like:
Part Desc Dept Qty
A El 1 1
2 4
9 6
Totals: 11
B C2 2 3
6 1
Totals: 4
What I am looking for is a way to have the part and desc repeat for the other 2 lines (or how many needed). This is then exported into access for reports but I need to have the part and desc on all the appropriate lines.
I have tried this as a step process but it only works if the part is repeated only once:
step 1:
=IF(RIGHT(F603,5)="tals:","",A603)
step 2:
=IF(M604="","",IF(M604=0,M603,M604))