Get-Col-Info-by-LT
Letztes Update: 22.06.2022
Verwenden Sie Zeichen für die Spaltenbeschriftungszeile. Zum Beispiel:
// Gets or sets the long name of first column in active sheet col(1)[L]$ =; // Gets or sets the units of first column in active sheet col(1)[U]$ =; // Gets or sets first Parameter row of first column in active sheet col(1)[P1]$ =; // Gets or sets first User Defined row of first column in active sheet col(1)[D1]$ =;
col() akzeptiert nur Spaltenname oder -index als Argumente. Verwenden Sie wcol(), wenn Sie einen Term verwenden müssen, der in eine Spaltennummer auswertet. Zum Beispiel:
//Gets or sets the comments of the column with the short name 'ii' in active sheet //Does not return the third column. ii=3; col(ii)[C]$ =; //Gets or sets the F(x)= formula of the third column in the active sheet ii=3; wcol(ii)[O]$ =; //Loop through worksheet setting every even-numbered-column comment equal to the units of the column before it for the active sheet nCols=wks.GetNumCols(); for (ii=0;ii<nCols;ii=ii+2){ wcol(2+ii)[C]$=wcol(1+ii)[U]$; };
Schlüsselwörter:Header, Beschriftungen