Origin Version (7.5): Operating System: Windows XP I have three worksheets (data1, data2, data3) containing x,y,z columns each. I want to concatenate/append the x column, the y column and the z-column of data2 and the ones of data3 to the x,y,z columns of data1 (yielding three coulumns not 6!). I tried the command " copy -a data2_A data1_A " followed by "copy -a data3_A data1_A" and followed by the corresponding commands for the y (B) and z (C) coulumn. The result are not columns with an equal no. of rows. Why not? Does anbody have a sugesstion ? Thanks Michael
Sorry, but I can't reproduce that problem. If all columns in each worksheet have the same number of rows to start with the following script produces a data1 worksheet with columns of the same length.
copy -a Data2_A Data1_A; copy -a Data3_A Data1_A; copy -a Data2_B Data1_B; copy -a Data3_B Data1_B; copy -a Data2_C Data1_C; copy -a Data3_C Data1_C;