Is it posible to append to txt file vertically???
Example original file... (constants: A, B , C, Car, Boat)
when come to january, i wish to add the Jan 08 data (for noth car and boat respectively into the previous data), it should be adding to vertically right of the dec 07 data..
Thanks.
Example original file... (constants: A, B , C, Car, Boat)
Code:
BLANK, Car, BLANK, Boat, BLANK BLANK, Nov07, Dec07, Nov07, Dec07 A, 1, 2, 2, 7, B, 1, 2, 2, 7, C, 1, 2, 2, 7,
Code:
BLANK, Car, BLANK, BLANK, Boat, BLANK, BLANK BLANK, Nov07, Dec07, Jan08, Nov07, Dec07, Jan08 A, 1, 2, 3, 2, 7, 4 B, 1, 2, 4, 2, 7, 4 C, 1, 2, 5, 2, 7, 5
Thanks.
Comment