Jan 7, 2005 #1 Jimmy2128 Programmer Feb 6, 2003 58 US I have a table that contains Column A and B. I need to update all Null values in Column B with values from Column A. Thanks James
I have a table that contains Column A and B. I need to update all Null values in Column B with values from Column A. Thanks James
Jan 7, 2005 #2 M8KWR Programmer Aug 18, 2004 864 GB the query would be: UPDATE Table1 SET Table1.[Column B] = [Table1]![Column A] WHERE (((Table1.[Column B]) Is Null)); Hope this helps Upvote 0 Downvote
the query would be: UPDATE Table1 SET Table1.[Column B] = [Table1]![Column A] WHERE (((Table1.[Column B]) Is Null)); Hope this helps
Jan 7, 2005 Thread starter #3 Jimmy2128 Programmer Feb 6, 2003 58 US Excellent! Thanks Upvote 0 Downvote