I have a master table that I look data up on using field call [TagNumber] in a form. Once I have located the record I would like to be able to insert certain fields into another table. Is this hard to do?
Source Table = SKPI
Field I am looking for = TagNumber
The fields that I want to INSERT are
[Type]
[NAMC]
[PartNumber]
[Quantity]
[TagNumber]
Summary:
Insert into table (Dispute)
[Type]
[NAMC]
[PartNumber]
[Quantity]
[TagNumber]
FROM (SKPI)
But I want to do this after I search SKPI for the record that needs to be inserted
Source Table = SKPI
Field I am looking for = TagNumber
The fields that I want to INSERT are
[Type]
[NAMC]
[PartNumber]
[Quantity]
[TagNumber]
Summary:
Insert into table (Dispute)
[Type]
[NAMC]
[PartNumber]
[Quantity]
[TagNumber]
FROM (SKPI)
But I want to do this after I search SKPI for the record that needs to be inserted