Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

consolidating fields 1

Status
Not open for further replies.

cochise

Technical User
Mar 27, 2001
171
US
I have a query with two fields. Each row has 1 or both of the fields populated. If both are populated the value is the same. How can I create a 3rd field that consolidates the two, so that there are no null values?
 
Do you mean permanently, or just make a query?

The most minimalist would be to make a query, pull in the two columns in question and put a third column in the query like so:

THIRD: Nz([EXACT_NAME_OF_FIELD_ONE],[EXACT_NAME_OF_FIELD_TWO])



That will do exactly what you need.

--
Find common answers using Google Groups:

Corrupt MDBs FAQ
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top