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

Sending data from one form to two tables


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

Recommended Posts

Posted

A typical "form" would have a "submit" button. Does yours? If so, this could be easily scripted.

Posted

From a data design perspective, the data should not need to go to two different tables. The whole idea behind relational databases is to remove duplication of data...

Posted

Setting aside questions of whether it's a good idea to do this, and with only a vague idea of your database structure... attach a script like this to your button:


Set Variable( $name ; name field )

Set Variable( $city ; city field )



Go to layout( "table A" )

Set Field( nameA; $name )

Set Field( cityA; $city )



Go to layout( "table B" )

Set Field( nameB; $name )

Set Field( cityB; $city )



Go to layout( original layout )

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