S
Steve Schapel
Blue Falcon,
If you are using a macro to run your Make-Table query, put a
SetWarnings,No action in the macro ahead of the action (OpenQuery?) that
you use to run the query. If you are using a VBA procedure, put
DoCmd.SetWarnings False
ahead of the code that runs the query, and
DoCmd.SetWarnings True
afterwards.
If you are using a macro to run your Make-Table query, put a
SetWarnings,No action in the macro ahead of the action (OpenQuery?) that
you use to run the query. If you are using a VBA procedure, put
DoCmd.SetWarnings False
ahead of the code that runs the query, and
DoCmd.SetWarnings True
afterwards.