No. I have a table with many fields that are text. Through a make table query I am taking the fields I need and exporting them into a new database. This new database will be created each month, the information sent to someone else, then destroyed. The someone else needs the information for many fields in numeric form, such as Male=0 for their purposes. They cannot use it in text form. SO,
In DB 1, I have a field called Gender that has "Male" or "Female"
In DB 2 a make table query creates a table with the Gender field, which then shows "Male" or "Female" from DB 1.
What I need is in DB2 Gender to be integer, 1 or 2.
Need the most efficient way to do that. I do not want to change the data in the DB1 table to 0,1 though, I want that to stay "Male" or "Female"