LimitedTech
Technical User
I have two tables;
Carriers
SafetyData
IF Carriers.USDOT MATCHES SafetyData.DotNumber
I want the DRSEA Field (in Carriers Table) to update to the DSEA field (from SafetyData).
I am not SQL Literate and use the Query grid to make the queries I need. I was attempting this using the "Update" query but can't figure it out. It seems like it should be a simple thing. The Access Help gives this example;
Thanks for your help!
Carriers
SafetyData
IF Carriers.USDOT MATCHES SafetyData.DotNumber
I want the DRSEA Field (in Carriers Table) to update to the DSEA field (from SafetyData).
I am not SQL Literate and use the Query grid to make the queries I need. I was attempting this using the "Update" query but can't figure it out. It seems like it should be a simple thing. The Access Help gives this example;
Which seems close except I don't want to sum anything, I just want to update a field. I haven't been able to successfully modify it.DSum("[Quantity]*[UnitPrice]",
"Order Details","[ProductID]=" & [ProductID])
Where the Product IDs in the current table match the Product IDs in the Order Details table, updates sales totals based on the product of Quantity and UnitPrice
Thanks for your help!