Hi, I have the following SQL statement that I've been using with MSDE with good results. My new requirements are to convert it to work with Access. I am not as familiar with Access syntax and am having trouble finding information to aid me here. Thanks in advance for your help.Here is the statement: if( not exists( select 'true' from Host where Mac = '00:01:E6:A2:00:00' ) ) begin /* insert this record */ insert into Host ( Mac, IPAddress, Hostname, Model, Description, CustomerId, DealerId ) values ( '00:01:E6:A2:00:00', '192.168.1.102', 'Legal Dept', 'HP LaserJet 4100 MFP', 'HP LaserJet 4100 MFP', 'Some Customer', 'Some Dealer' ) end