Hi,
I am trying to use VBA to split about 5,000 lines into 10,000. Each line has a dollar amount, say $10 and two columns, say A and B, each with a %, as well as a unique identified (name). A+B=100%. I now want a line for just 'A' and a line for just 'B'. Example:
INPUT:
NAME A B $
CAR 20% 80% 10
OUTPUT:
NAME TYPE $
CAR A 2
CAR B 8
Any thoughts on how to do this for 5000+ lines? Thanks!
I am trying to use VBA to split about 5,000 lines into 10,000. Each line has a dollar amount, say $10 and two columns, say A and B, each with a %, as well as a unique identified (name). A+B=100%. I now want a line for just 'A' and a line for just 'B'. Example:
INPUT:
NAME A B $
CAR 20% 80% 10
OUTPUT:
NAME TYPE $
CAR A 2
CAR B 8
Any thoughts on how to do this for 5000+ lines? Thanks!