Hi,
Why not directly using the Cell function and pass a value into a specific cell?
For example, your script could be modified into something like this:
int ii = Cell(1, 4);
Cell(1, 7) = Cell(ii, 3);
This is actually equivalent to:
int ii = Col(D)[1];
Col(G)[1] = Col(C)[ii];
Kathy
Originlab