October 10, 200322 yr Hello, I have a script that finds duplicate records and deletes. However, If the script does not find a duplicate it returns a message "No records match this request". What should I add to the script to not show this message when a duplicate is not found? Any advise would be appreciated. Shari
October 10, 200322 yr Set Error Capture [On] will silence this error, but you will want to test for it so you don't delete non-duplicates.
October 10, 200322 yr That's why I mentioned you'll want to test for it. You could use If [not Status(CurrentError)] or If [status(CurrentFoundCount)] to test if at least one record results from a find.
Create an account or sign in to comment