| T O P I C R E V I E W |
| qidaozhang |
Posted - 02/05/2001 : 1:01:07 PM Hi, all,
How can I delete one column from script? I know one way by copying columns you wanted from one worksheet to another, and then delete the original worksheet, maybe this way is too fool. Any other ideas?
Thanks.
Qidao Zhang
|
| 1 L A T E S T R E P L I E S (Newest First) |
| Mike Buess |
Posted - 02/05/2001 : 6:10:27 PM Use the 'delete' command. To delete column C from the worksheet Data1:
del Data1_C;
If Data1 is the active window you can also use:
del col(C); or del col(3);
(assuming C is the third column).
-Mike |
|
|