In my project, I create one of 3 Temporary named tables depending on where the data comes from.
How do I check to see if a table exists so that I can do something with it?
I started on:
but I do not think that is the correct syntax.
Alan
How do I check to see if a table exists so that I can do something with it?
I started on:
Code:
If Exists "tempTableX" then
Alan