replace null value with text from another column (1 Viewer)

Dave_epic

Registered User.
Local time
Today, 09:53
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
 

Brianwarnock

Retired
Local time
Today, 09:53
Joined
Jun 2, 2003
Messages
12,701
To update the table use a update query for colC update to [ColB] crtiteria Is Null

Brian
 

Dave_epic

Registered User.
Local time
Today, 09:53
Joined
Mar 6, 2008
Messages
39
Yes, thanks. That worked. Thought it might be something as simple as an update query.
 

Darth Vodka

Registered User.
Local time
Today, 09:53
Joined
Sep 25, 2007
Messages
344
or define C as nz(tbl_Whatever.C,tbl_Whatever.B)
 

Users who are viewing this thread

Top Bottom