Join when matching field are blank (1 Viewer)

tanyamc

Registered User.
Local time
Yesterday, 17:25
Joined
Mar 7, 2019
Messages
43
Any ideas why the update query fixes the blanks but not the sorghum name? Thanks.
 

MajP

You've got your good things, and you've got mine.
Local time
Yesterday, 19:25
Joined
May 21, 2018
Messages
8,525
I would think something more like
Code:
UPDATE NAP_Crops_Dupl_Table SET [Crop Name] = 'Sorghum Dual - Purpose' WHERE [Crop Name] = 'Sorghum, Dual Purpose'
 

tanyamc

Registered User.
Local time
Yesterday, 17:25
Joined
Mar 7, 2019
Messages
43
I had to do two separate update queries. Otherwise I got syntax errors.

I think it is working correctly now! Many thanks!
 

MajP

You've got your good things, and you've got mine.
Local time
Yesterday, 19:25
Joined
May 21, 2018
Messages
8,525
I had to do two separate update queries
Yes, much easier to do multiple updates.
 

tanyamc

Registered User.
Local time
Yesterday, 17:25
Joined
Mar 7, 2019
Messages
43
A coworker suggested doing it within the queries I already had, rather than doing the update method. It worked! Thanks!
 

Users who are viewing this thread

Top Bottom