Skip to content
Advertisement

SQL in Excel: Cannot call declared variable

I am trying to breakdown my SQL string in Excel VBA, storing my variables in the first part of the SQL, and calling them in the second part. It seems that declared variables is not my friend here?

First part(Declaring my variable)

Second part(Calling my variable)

Using a temp table works:

But calling the variable doesn’t:

Advertisement

Answer

In-memory @variables are only in-scope during the execution of a single command; once rst.Open returns, the variable is gone and no longer exists.

By storing it into a #temp table, you are persisting the value to physical disk storage, which leaves it available to other subsequent commands.

Don’t forget to DROP TABLE #cte_TEMP; at one point! 🙂

Note: #temp tables are only accessible from the user that created it. If you need to access it from a different connection string, you need to use ##temp tables instead.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement