JoeDu Posted May 22, 2008 Share Posted May 22, 2008 I'd like to have a field that indicates whether or not I've run a script on a particular record. Specifically, I will often generate a new record and then print it via a script. Since I have so many records, I will often forget which one's I've printed. It would be helpful to look at the record and see a bullet or check box that indicates "printed". However, if I generate a new record based off one that has been printed, I need that field to revert back to "No" or "Not printed" (or blank or un-checked). Is this possible? Link to comment Share on other sites More sharing options...
Techphan Posted May 22, 2008 Share Posted May 22, 2008 If you script all of the basic processes that you mentioned - creating a new record (YourTable::Print="Y"), printing that record (YourTable::Print="N"), and editing an old record (or creating a new record based upon the existing record, either way Print="Y") than you can keep track of that record accordingly. Link to comment Share on other sites More sharing options...
JoeDu Posted May 23, 2008 Author Share Posted May 23, 2008 You know, sometimes it's missing the forests through the trees. When the "Print" script is run, I have it set a field to "Printed." When the "New Record" script is run, it sets the same field to "". So simple! I just have to remember to always use the scripts instead of keyboard commands. Thanks!!!!! Link to comment Share on other sites More sharing options...
Recommended Posts