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

Recommended Posts

Posted (edited)

I have created an insurance database for my company. The trouble I have is figuring how to move data between two layouts. When I have a customer that cancels or dies I would like to check a box that would move that persons data from one layout to another so that they no longer show up on the "active client" list. Is there such a script?

Any help would be fantastic.

Thanks,

Jason

Edited by Guest
Posted (edited)

You could attach a script to the check box that does not have field entry enabled that runs something like this when clicked:

if(checkboxfield = "" [meaning empty])

{

set field "status" to "inactive client"

copy your record data to variables

go to layout x

create new record

paste variables

go to original layout

omit record

}

I have used this before. Let me know if you need any help with this.

Edited by Guest
Posted

Well, it depends, a layout is too general.

Do you want to transfer it to another table or just simply have it not appear on the list?

(2 layouts can be connected to the same table.)

I have attached a file with an example.

You would simply change any buttons that went to the inactive list layout to a script that first did a find on inactive and then went to the list layout.

Unless you want to completely move them to a separate table, which is the script I gave you earlier. let me know if you need any other help.

Feel free to ask. It took me a while to get the hang of FM too.

Enjoy.

Insurance.zip

Insurance.zip

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