3.7.5.104.2 wks.DC.c1/wks.DC.c2

Syntax

wks.DC.c1
wks.DC.c2

Access

Read/write
numeric

Description

Get or set range of columns imported: c1 is the beginning column index and c2 is the ending column index.

Examples

newbook;
wbook.dc.add("CSV");
wks.dc.source$=System.path.program$+"Samples\Spectroscopy\Peaks with Base.DAT";
wks.dc.script$ = "wks.col = wks.dc.c2+1;wks.col.formula$ = B-C;"; // add one more column after import, and set column formula
wks.dc.import();

.