How can I create a button on a form that will search the current table for a record and iff the record is not found automagically search the archive table?
Can this be done with a query??
select * from shipping
where TrackingID = 'something'
if count = 0 then
select * from shippingArchive
where TrackingID = 'something'
Thanks
John Fuhrman
Can this be done with a query??
select * from shipping
where TrackingID = 'something'
if count = 0 then
select * from shippingArchive
where TrackingID = 'something'
Thanks
John Fuhrman