Pass the results of a query to a variable

  • Thread starter Thread starter Tony A.
  • Start date Start date
T

Tony A.

I created a query using the Query Builder, the result has one record with two
columns. I'd run the query, and pass the value of one column to a variable.
Any suggests on how this might be done or any suggestion of a better way to
reach the same goal?
 
I created a query using the Query Builder, the result has one record with two
columns. I'd run the query, and pass the value of one column to a variable.
Any suggests on how this might be done or any suggestion of a better way to
reach the same goal?

variable = DLookUp("fieldname", "queryname")
 
Back
Top