This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.
Afternoon all,
Is it possible to test for the existence of a temp variable? I'd like to set a filter based on whether a temp variable has been set or not, but cannot determine how to test for it.
Thanks!
Hi. Have you tried using the IsNull() function? For example:
If IsNull(TempVars!VarName) Then
...
Hope that helps...