G
Guest
Hi!
I'm used to program in VBA Excel where I can move through spreadsheet with
OFFSET.
Is there any way to use Offset in Access Table?
I already know to move with:
Do Until rstlinks.EOF
var_aux = rstlinks.Fields("FieldName").Value
rstlinks.MoveNext
Loop
But I would like to use something like:
Do Until rstlinks.EOF
rstlinks.Fields("FieldName").OFFSET(x,y).Value =
rstlinks.Fields("FieldName").OFFSET(x-1,y).Value
rstlinks.MoveNext
Loop
Thanks!
I'm used to program in VBA Excel where I can move through spreadsheet with
OFFSET.
Is there any way to use Offset in Access Table?
I already know to move with:
Do Until rstlinks.EOF
var_aux = rstlinks.Fields("FieldName").Value
rstlinks.MoveNext
Loop
But I would like to use something like:
Do Until rstlinks.EOF
rstlinks.Fields("FieldName").OFFSET(x,y).Value =
rstlinks.Fields("FieldName").OFFSET(x-1,y).Value
rstlinks.MoveNext
Loop
Thanks!