0
Update fields from another table.
In this Table 'Enter Data', when enter the 'Last Name' need Update all fields os Clients table in the 'Enter Data' Table
6 replies
-
Have you tried the Trigger after update for Last_Name? Is Last_Name a dynamic field or a reference field?
-
May I recommend you try the record() command. Something like the following in the Trigger after update of Last_Name:
let xdata := record(tableindynamicfield,number(Last_Name)); 'First Name' := xdata.'First Name' etc....
Content aside
- Status Answered
- 11 mths agoLast active
- 6Replies
- 69Views
-
2
Following