Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 6920 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted (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 by Guest
Posted

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

Posted

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.