D
dhstein
I am reading a text file to add new records to a table. I only want to add
if this is a new record and I will determine that based on comparing the
fields in the text file to the composite index of the table. Can I use the
"seek" method somehow ...
rsWarehouseLocations.Index = "WarehouseSKUAndLocation"
rsWarehouseLocations.Seek "=", {How can I code multiple inputs from text
file here to compare to the composite index?}
If rsWarehouseLocations.NoMatch Then
Msgbox "This is new data to be added to the table"
if this is a new record and I will determine that based on comparing the
fields in the text file to the composite index of the table. Can I use the
"seek" method somehow ...
rsWarehouseLocations.Index = "WarehouseSKUAndLocation"
rsWarehouseLocations.Seek "=", {How can I code multiple inputs from text
file here to compare to the composite index?}
If rsWarehouseLocations.NoMatch Then
Msgbox "This is new data to be added to the table"