T O P I C R E V I E W |
alex_eagle |
Posted - 04/27/2002 : 08:24:43 AM I tried to copy the first column of one worksheet into the first column of another. e.g. %(%Z,1)=%(T,1) sometimes simply doesnt work. What is the safest way to copy columns ? Thank you !
|
5 L A T E S T R E P L I E S (Newest First) |
Mike Buess |
Posted - 04/30/2002 : 11:54:38 AM The string variable %Z is used by many Origin routines, so maybe it has been redefined by the time you try to copy it. The next time your copy command doesn't work type %Z= in the script window to make sure it's still what you set it to. I'd use another string variable in any case.
Mike Buess Origin WebRing Member |
alex_eagle |
Posted - 04/30/2002 : 10:19:04 AM You are right, but thats only a typing error here. The problem still remains.
|
alex_eagle |
Posted - 04/30/2002 : 10:18:58 AM You are right, but thats only a typing error here. The problem still remains.
|
alex_eagle |
Posted - 04/30/2002 : 10:18:53 AM You are right, but thats only a typing error here. The problem still remains.
|
cpyang |
Posted - 04/27/2002 : 10:38:49 AM I see you missed the % in T,
%(%Z,1)=%(%T,1)
CP
|