Usually, there are two ways to get the data from a column and put it in a vector. If the vector is defined in either way, the changes the vector will affect the column in the worksheet.
1.
Worksheet wks=Project.ActiveLayer();
Column col(wks, 1);
vector v(col);
2.
Worksheet wks=Project.ActiveLayer();
Dataset dsB(wks,1);
vector vB( dsB, FALSE ); // Copy Dataset dsD to vector vD removing missing values
Deanna
OriginLab GZ Office