Hi, in a script I make a worksheet with the create -w command, then I add columns with the worksheet -a command. But its not possible to set values in the worksheet with script for rows greater than 30 ? e.g. %(%H,3,31)=5 leads to a command error ? Does somebody know this problem ? Thanks
New columns, like worksheets created with win -t Data, have only 30 rows. You need to use the set command after adding columns.
create test -w 64; // create wks named test with 2 columns, 64 rows wo -a 1; // add a column set test -er 64; // set the number of rows to 64 again %(%H,3,31)=5; // no error