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

Recommended Posts

Posted

I'm working on a movie database.

I have a field that tracks number of certain scene types in a feature. Let's say "10". I want a button that can create the same amount of "New Records" in a related table that breaks those scenes down into details.

I haven't found anything in New Record that can be modified.

Any ideas?

Thanks!

Posted

The button will need to perform a script, e.g.:

Set Field( gCounter ; SceneTypes )

Go to layout( scene details )

Loop

  Exit Loop If ( gCounter = 0 )

  New Record

  Set Field( gCounter ; gCounter - 1 )

End Loop

Go to layout( original layout )

Note: gCounter is a global field; in FileMaker 8 and newer, I'd use a variable instead.

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