TheComputerDude
Programmer
I prefer to write my queries in code, but I am not sure how to reference them from another query. I know FoxPro supports cursors, but Is this possible in Access?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim SQL As String
SQL = "Select * From TheTable Where fld1 < 99"
CurrentDb.CreateQueryDef("myQuery", SQL)