john9210 Posted September 10, 2008 Posted September 10, 2008 How can I move data from field 1 in table 1 to field 2 in related table 2? Using lookups doesn't seem to do the job except on new records.
grumbachr Posted September 10, 2008 Posted September 10, 2008 Would the Record> Replace Field Contents work for you?
mr_vodka Posted September 11, 2008 Posted September 11, 2008 I wouldnt recommend using Replace field contents here. You can Store it in a variable instead. Set variable [ $whatever; Table1::Field1 ] Set Field [ Table1::Field1; "" ] //Clears field because moving data Go to layout [ Table2 layout ] Go to record [] //Whatever record you want. Set field [ Table2::Field2; $whatever ] If you are trying to change the first related record, then you can just you set field. Set field [ Table2::Field2; Table1::Field1 ] Set variable [ $whatever; Table1::Field1 ] //Clears field because moving data You could also use Go to Related record to show the related records. But without knowing your structure, I cant be more concise.
Recommended Posts
This topic is 5976 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 accountSign in
Already have an account? Sign in here.
Sign In Now