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 6495 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

I am trying to create a script that will autofill a person's email address based on their user account name. I know I could do an if-then step in the script, but for 40 users that would be a lot. Is there a way to use the Set Field with a calculated result? What I imagined was this:

Get Accountname

If Accountname=bookkeeper set the field to [email protected]

If Accountname=purchasing set the field to [email protected].

Is it possible to do that in one calculated result?

Posted

Get(AccountName) & "@example.com"

Posted

I assume you are looking to set up an email address for your employees using their accountname as part of the address. e.g. [email protected].

If the account name is already their set up an auto enter calculation in the email address field:

Get(Accountname) &"@abc.com"

Posted

Many are the same as the email address, but some are not. I had also intended on one that autofills the Title in another field and I thought I could use the same routine if it worked.

Posted

You should have a User (or Employee) table, where the Email address is stored, along with the Account Name. You can then use this on the child side of a relationship from a "CurrentUser" global or unstored calc in the local table to the Account Name in the User table. With the relationship established, you can reference the Email address (or whatever fields you wish) from the User table. The script can then grab the related Email field and insert it in the local record using Set Field[].

Posted

So once I have that separate table created, I have the script compare the accountname to the Users table, then set the field from the related record?

This topic is 6495 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.