RoadrunnerRay Posted February 14, 2006 Posted February 14, 2006 (edited) I would like to auto-enter 30 to 40 lines of data into a field. This data would include field definitions from the same file (table) that the field is located in. I do not know how to do this or if it is possible. Thanks in advance for any thoughts.........Ray Edited February 14, 2006 by Guest
bruceR Posted February 14, 2006 Posted February 14, 2006 Perform applescript: set tablename to "Invoices" -- change to suit set targetField to "Table Definition" -- change to suit set fdefault to current application copy formula of every field of table tablename of database 1 to f copy name of every field of table tablename of database 1 to n set temp to "" repeat with num from 1 to count of n copy item num of f to f1 copy item num of n to n1 if f1 = fdefault then copy "" to f1 set temp to temp & return & n1 & return & f1 & return end repeat copy temp to cell targetField of current record
RoadrunnerRay Posted February 14, 2006 Author Posted February 14, 2006 Hi BruceR, is this a response to my original post, if so, I am at a loss to understand it. Thanks, Ray
RoadrunnerRay Posted February 15, 2006 Author Posted February 15, 2006 Thought I would try to clarify my question. I would like to enter a "fixed text message" using the Auto-Enter option for a field. Within this fixed text message would be a few fields from the same file. There is probably many other ways to do this which I am unaware of. This field is used when I generate a mass email. Thanks, Ray
Recommended Posts
This topic is 6920 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now