D Dominic Vella Sep 2, 2008 #1 How do I check if table 'Company Details' exists before I start using it? Thanks
J John W. Vinson Sep 2, 2008 #2 How do I check if table 'Company Details' exists before I start using it? Thanks Click to expand... Using it in what context? VBA code? writing a query? building a form?
How do I check if table 'Company Details' exists before I start using it? Thanks Click to expand... Using it in what context? VBA code? writing a query? building a form?
D Dominic Vella Sep 2, 2008 #3 Oh, you are good!! Dom Chris O'C via AccessMonster.com said: If DCount("*","msysobjects","name='Company Details' and type in (1,6)")>0 Then MsgBox "table already exists" Else MsgBox "table doesn't exist" End If Chris Microsoft MVP Click to expand...
Oh, you are good!! Dom Chris O'C via AccessMonster.com said: If DCount("*","msysobjects","name='Company Details' and type in (1,6)")>0 Then MsgBox "table already exists" Else MsgBox "table doesn't exist" End If Chris Microsoft MVP Click to expand...