Repeat Expression

A

aMack

Is there a command which will cause a Macro to repeat based on the number of
records in a table?
 
K

Ken Snell \(MVP\)

Use an expression similar to this for the Repeat Count argument of the
RunMacro action:

=DCount("*", "NameOfYourTable")
 
Top