ortizmario6025… Mon, 08/08/2022 - 14:16 Forums General discussion Hello, How to control if an extraction is empty, which macro continues to export and does not give me a stop. o Idea does not export empty tables? You can check to see if the Brian Element Tue, 08/09/2022 - 08:42 You can check to see if the database is empty before continuing. dim db as database set db = client.opendatabase("My database.imd") if db.count = 0 then 'do nothing as it is empty end if Log in or register to post comments Log in or register to post comments
You can check to see if the Brian Element Tue, 08/09/2022 - 08:42 You can check to see if the database is empty before continuing. dim db as database set db = client.opendatabase("My database.imd") if db.count = 0 then 'do nothing as it is empty end if Log in or register to post comments
You can check to see if the
You can check to see if the database is empty before continuing.
dim db as database
set db = client.opendatabase("My database.imd")
if db.count = 0 then
'do nothing as it is empty
end if