May 28, 200322 yr Sometimes a 'find' within a series of linked scripts will not find any records, and the dialogue to that effect pops up. In that event I want the current script to cancel and go on to perform the next script - the one linked by the 'perform script' as the last step in the current script. Is there a way to make this so?
May 28, 200322 yr GlennC In your script, put the Set Error Capture step before you perform the find. After the find step, put an if loop something like this If[status(CurrentError) = 401] Perform Script [NextScript] End If HTH, Mike
May 30, 200322 yr It's easier to use the following, rather than trying to remember what the appropriate error code # is. Instead, use: Status(CurrentFoundCount) = 0 Steve
Create an account or sign in to comment