Global Variables

  • Thread starter Thread starter Guest
  • Start date Start date
In a report, you can refer to the variable by name.

In a query, you must call a public function that returns the value of the
variable:
Public Function GetVariableOne()
GetVariableOne = NameOfYourVariable
End Function
 
Back
Top