Displaying record position on a form.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Im using DoCmd.GoToRecord commands to navigate between records displayed on
a form. Is there a way I can also display record position on a from using
DoCmds ? Example – record 1 of 100, record 2 of 100.
 
Hi,


1 + Me.Recordset.AbsolutePosition


should return the position. Recorset.Count should return the total number of
records.


Hoping it may help,
Vanderghast, Access MVP
 
Thanks, That Worked!

Michel Walsh said:
Hi,


1 + Me.Recordset.AbsolutePosition


should return the position. Recorset.Count should return the total number of
records.


Hoping it may help,
Vanderghast, Access MVP
 
Back
Top