geospatial
Active Member
- Joined
- Sep 2, 2008
- Messages
- 290
Access 2013
Windows 10
I have 2 tables (Prsnl, dataImport)
In Prsnl I have 2 fields (fullName,EDIPI)
In dataImport I have 2 fields(Name,EDIPI)
The EDIPI field in Prsnl is blank, and I want to fill it with the values from dataImport.EDIPI
The query I tried was
UPDATE Prsnl
SET Prsnl.EDIPI = dataImport.EDIPI
WHERE Prsnl.fullName = dataImport.Name
When I try and run it I get it asking to update 0 rows.
I also try and do a SELECT as follows
SELECT * FROM Prsnl
WHERE Prsnl.fullName = dataImport.Name
I get 0 results on that as well, but when I compare the 2 it looks the same. Prsnl.fullName is a calculated field (not sure if that would cause the issue and if so, How should I go about fixing that)
Windows 10
I have 2 tables (Prsnl, dataImport)
In Prsnl I have 2 fields (fullName,EDIPI)
In dataImport I have 2 fields(Name,EDIPI)
The EDIPI field in Prsnl is blank, and I want to fill it with the values from dataImport.EDIPI
The query I tried was
UPDATE Prsnl
SET Prsnl.EDIPI = dataImport.EDIPI
WHERE Prsnl.fullName = dataImport.Name
When I try and run it I get it asking to update 0 rows.
I also try and do a SELECT as follows
SELECT * FROM Prsnl
WHERE Prsnl.fullName = dataImport.Name
I get 0 results on that as well, but when I compare the 2 it looks the same. Prsnl.fullName is a calculated field (not sure if that would cause the issue and if so, How should I go about fixing that)