Ah, it's a MakeTable query! I'm afraid you can't get Access to create a Boolean column using a MakeTable query. But there are a couple of alternatives you could consider.
1. Run the MakeTable, and then modify the field definition from Number to Yes/No. (You can only do this in the user interface. DDL doesn't support changing a column data type.)
2. If you need an all-code solution, either
2A. Create the table in code using DDL, and then use an Append query instead of the MakeTable query, or
2B. Use the MakeTable query, then use DDL to add a Boolean column, then run an Update query to copy the Number column to the Boolean column, then use DDL to Drop the Number column.
Rick Sprague
Want the best answers? See faq181-2886
To write a program from scratch, first create the universe. - Paraphrased from Albert Einstein