bonusmarch
MIS
I have a problem here. I need to compare two tables for related fields. If the fields match, then a field from table1 will copy to the correspondent field to table 2.
Table 1 is an update table with changes only to the Update field. The update field has an asterisk "*" in it indicating change to the record.
Example.
Table1: FName, LName, Area, Update[*]
Table2: FName, LName, Area, Update[ ]
Here is the psuedo code I need to convert to vb code.
Select first record w/ asterisk "*" in the Update field.
If T1.Fname = T2.FName
T1.LName = T2.Lname
T1.Area = T2.Area Then
Copy T1.Update to T2.Update
Copy "" to T1.Update
Next...
Thanks.
Table 1 is an update table with changes only to the Update field. The update field has an asterisk "*" in it indicating change to the record.
Example.
Table1: FName, LName, Area, Update[*]
Table2: FName, LName, Area, Update[ ]
Here is the psuedo code I need to convert to vb code.
Select first record w/ asterisk "*" in the Update field.
If T1.Fname = T2.FName
T1.LName = T2.Lname
T1.Area = T2.Area Then
Copy T1.Update to T2.Update
Copy "" to T1.Update
Next...
Thanks.