Simplest way to do this is to write a simple LabTalk script. You can begin by reading about Range notation in LabTalk:
http://www.originlab.com/doc/LabTalk/Tutorials/Tutorial-Range-Notation
Code will look something like this
range sd = [book1]1!col(d);
range se = [book1]1!col(e);
range dest1=[book2]1!wcol(1);
range dest2=[book2]1!wcol(2);
int nr = 294;
dest1[1]=sd[nr];
dest1[2]=se[nr];
CP