Hi all!
Wondering if someone can advise on if it's possible to get something like this done.
I have a file with invoice line item data that comes out of a system, and I would like to import it into another system. The problem is, the export that comes out of the first system does not break out the shipping or tax on separate lines, instead it displays the total on each line. The system I want to import into, requires each line to be separate.
I want to be able to insert 2 rows when either shipping or tax column have values. From there, I'd like to copy some of the data from above lines and enter the shipping and tax on its own lines. Any help is much appreciated!
Thanks!
Wondering if someone can advise on if it's possible to get something like this done.
I have a file with invoice line item data that comes out of a system, and I would like to import it into another system. The problem is, the export that comes out of the first system does not break out the shipping or tax on separate lines, instead it displays the total on each line. The system I want to import into, requires each line to be separate.
I want to be able to insert 2 rows when either shipping or tax column have values. From there, I'd like to copy some of the data from above lines and enter the shipping and tax on its own lines. Any help is much appreciated!
BEFORE | A | B | C | D | E | F | G | H | I |
1 | Inv# | Customer Name | Product | Qty | Price | Ext | Shipping | Tax | Total |
2 | 2455 | ABC Company | sku1 | 3 | 25 | 75 | 10 | 13.3 | 156.3 |
3 | 2455 | ABC Company | sku2 | 5 | 10 | 50 | 10 | 13.3 | 156.3 |
4 | 2455 | ABC Company | sku3 | 1 | 8 | 8 | 10 | 13.3 | 156.3 |
5 | 3150 | CD Company | sku1 | 3 | 20 | 60 | 0 | 0 | 60 |
AFTER | A | B | C | D | E | F | G | H | I |
1 | Inv# | Customer Name | Product | Qty | Price | Ext | Shipping | Tax | Total |
2 | 2455 | ABC Company | sku1 | 3 | 25 | 75 | 10 | 13.3 | 156.3 |
3 | 2455 | ABC Company | sku2 | 5 | 10 | 50 | 10 | 13.3 | 156.3 |
4 | 2455 | ABC Company | sku3 | 1 | 8 | 8 | 10 | 13.3 | 156.3 |
5 | 2455 | ABC Company | Shipping | 1 | 10 | 10 | 156.3 | ||
6 | 2455 | ABC Company | Tax | 1 | 13.3 | 13.3 | 156.3 | ||
7 | 3150 | CD Company | sku1 | 3 | 20 | 60 | 0 | 0 | 60 |
Thanks!