@jasongao,
One way would be something like this:
You will need to extract your data from column into a matrix. You can do that using << get as matrix command.
Mat = [2,3,4,50,60,70] ;
NewMat = Transpose(Shape(Mat,(N Rows(Mat) * N Cols(Mat))/3,3 ));
V Mean((NewMat));
Best
Uday