Page 1 of 2
Copy a row of csv file
Posted: Fri Sep 08, 2006 1:10 am
by jee-hoon
Hi,
I would like to copy a row from csv file to an another csv file. I see in this forum a task to copy some lines from csv file...but anything about rows.
my task must select all the row or select a range (row) and export to another csv file.
thanks for your help
Copy a row of csv file
Posted: Sun Sep 10, 2006 11:48 pm
by Oleg
The row of CSV file is a whole line of text file. (CSV file has text format).
Or, maybe, did you mean something another?
Your original message was about columns. So, rows or columns?
Copy a row of csv file
Posted: Mon Sep 11, 2006 2:48 am
by jee-hoon
An exemple :
I would like to copy in another csv file , the column A5:A15 (first file) to F7:F17 in another file.
Sorry for my english...i'm quite bad...but I'll try to do my best
Copy a row of csv file
Posted: Tue Sep 12, 2006 12:54 am
by jee-hoon
For Oleg :
Rows or columns, both interests me much
Copy a row of csv file
Posted: Tue Sep 12, 2006 1:14 am
by jee-hoon
I want to copy a range of the data being from a column and to copy them in another file.
like that : column C (file 1) to column F (file 2)
more harder : Column C3 to C13 (file 1) to Column F5 to F15 (file 2)
Thank you for people who seek a solution for me
Copy a row of csv file
Posted: Tue Sep 12, 2006 1:24 am
by Oleg
See the following example.
This task exports rectangular area from source.csv to new csv file.
Area coordinates are A5:F15 (as in Excel). In another words we should export data in lines from 4 to 14 and in columns from 0 to 5. Counter of lines and columns begins from 0
BTW: you can find more examples here.
Save the task into file and use menu "Task | Import" to import into RoboTask
Copy a row of csv file
Posted: Tue Sep 12, 2006 1:28 am
by Oleg
like that : column C (file 1) to column F (file 2)
more harder : Column C3 to C13 (file 1) to Column F5 to F15 (file 2)
Does file2 contain the some data or is it a new file? In first case you should replace data in file2.
Copy a row of csv file
Posted: Tue Sep 12, 2006 1:41 am
by jee-hoon
In the first file (contain data) and the second file is empty
Copy a row of csv file
Posted: Tue Sep 12, 2006 1:47 am
by jee-hoon
thanks for "tsk" link
Copy a row of csv file
Posted: Tue Sep 12, 2006 2:25 am
by Oleg
more harder : Column C3 to C13 (file 1) to Column F5 to F15 (file 2)
Ok, see another task. It copies data from C3:C13 to F5:F15