Why not:

Code:
FOR ii = 29 TO 1 STEP -1
vmean[ii] = vmean[ii - 1]
NEXT ii

vmean[0] = newvalue
I don't have the manual nearby, but I'm pretty sure we can go backwards.

Robert