January 10, 200322 yr Hiya, I am trying to generate a script to run a find based upon the current value in a text field (field title "Interviewer"). This field shows values from a related file and the user enters the data via a popup value list. It is a non-global field. What I am trying to do is find all the records that pertain to the value of the Interviewer field, then run a sub-script that generates a report/summary report. I have the script for the latter part, but I would like some help to put together the script for the initial find. Thanks in advance Jodi
January 10, 200322 yr Run a script which finds all the records for the current interviewer (checking that you have an interviewer allocated to the record), like this If[isEmpty(Interviewer)] . Show Message[No Interviewer has been assigned to this record] . Exit Script End If Copy[select,Interviewer] Enter Find Mode [] Paste[select,Interviewer] Perform Find[] Then follow on with the script steps (or a subscript) to generate your report. Assign the script to a button like "Show All for This Interviewer"...
Create an account or sign in to comment