count loops

  • Thread starter Thread starter boomtap via AccessMonster.com
  • Start date Start date
Boomtap,

Yes. You can put an unbound textbox on a form, and within each "loop"
you can use a SetValue action in the macro...
Item: [NameOfTextbox]
Expression: [NameOfTextbox]+1

Note that the RunMacro action has a Repeat Count argument that you can
use to control the number of iterations, or a Repeat Expression argument
that you can use to determine when it stops.
 
Worked great Steve. Thanks!

Steve said:
Boomtap,

Yes. You can put an unbound textbox on a form, and within each "loop"
you can use a SetValue action in the macro...
Item: [NameOfTextbox]
Expression: [NameOfTextbox]+1

Note that the RunMacro action has a Repeat Count argument that you can
use to control the number of iterations, or a Repeat Expression argument
that you can use to determine when it stops.
Is there a way to have a macro count how many times it loops?
 
Back
Top