replace null value with text from another column

Dave_epic

Registered User.
Local time
Today, 17:14
Joined
Mar 6, 2008
Messages
39
Hi

I have 3 columns . Column A and Column B and column C.
Column A is my unique identifier.
Column B is fully populated ie no null values.
Column C has some null values.

Where column C has null values I would like to add the corresponding value from column B.

Thanks
 
To update the table use a update query for colC update to [ColB] crtiteria Is Null

Brian
 
Yes, thanks. That worked. Thought it might be something as simple as an update query.
 

Users who are viewing this thread

Back
Top Bottom