I have a data table with 2 rows from an import from Excel and am trying to extract some data.
Reticle1name = :Reticle[1];//Reticle is a column
Reticle2name = :Reticle[2];
Reticle1X= :Closest DUT# X[1];//Closest DUT# X is a column
Reticle2X= :Closest DUT# X[2];
Reticle1Y= :Closest DUT# Y[1];//Closest DUT# Y is a column
Reticle2Y= :Closest DUT# Y[2];
AlignmentBump= :Alignment Bump[1];//Alignment Bump is a column
This gives an error in the Log window:
Cannot set value for the column 'Alignment Bump' because the row number (-1) is not valid.
If I change the last line to
AB= :Alignment Bump[1];
It works. Is this a problem of the whitespace interpretation?