UKmedia
Programmer
- Nov 2, 2002
- 90
Morning,
I have some txt files in the format of:
ICR,X3,51,2,10:37:40,14/10/2008
1,2,137.00
3,1,8.00
Here is the problem:
I have my table laid out as
net_sales | gross_sales
I want to ignore the first row which I do with FIRSTROW = 2, and insert the other two rows into the columns but when I run this it inserts it as
net_sales | gross_sales
2 137.00
1 8.00
Where I want it to be:
net_sales | gross_sales
137.00 8.00
How can I tell it to insert 137.00 into net_sales and 8.00 into gross_sales
I hope I made this clear enough.
UKmedia productions
I have some txt files in the format of:
ICR,X3,51,2,10:37:40,14/10/2008
1,2,137.00
3,1,8.00
Here is the problem:
I have my table laid out as
net_sales | gross_sales
I want to ignore the first row which I do with FIRSTROW = 2, and insert the other two rows into the columns but when I run this it inserts it as
net_sales | gross_sales
2 137.00
1 8.00
Where I want it to be:
net_sales | gross_sales
137.00 8.00
How can I tell it to insert 137.00 into net_sales and 8.00 into gross_sales
I hope I made this clear enough.
UKmedia productions