
Originally Posted by
JoeM
There are two ways to go about this:
1. Update the data in column B with an Update Query.
You would first create a query that only returns column B, and put "unknown/x" in the Criteria of this field. This will then only return records that have this value in it.
Then, change it to an Update Query, and on the "Update to:" line for this field, enter [ColumnA] (or whatever the name of your column A field is).
Then run the query.
Column B will not be updated. You can complete remove column A from the table, if your desire.
2. Create a query that returns the value you want in a Calculated Field. This is desireable if you wish to keep both the original column A and column B values (for historical reasons or whatever). That calculated field would look something like:
MyValue: IIF([ColumnB]="unknown/x",[ColumnA],[ColumnB])