Sure. Back up the database in case something goes wrong.
Then open the table in design view and change the field type.
If you need to do it programmatically:
strSql = "ALTER TABLE MyTable ALTER COLUMN MyField YESNO;"
DBEngine(0)(0).Execute strSql, dbFailOnError
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users -
http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
"Ricter" <(E-Mail Removed)> wrote in message
news:2600B810-EE59-441C-8754-(E-Mail Removed)...
> I'm considering changing a field's data type to Yes/No, from Text, to save
> space in the future. Can I do this simply without altering the table's
> current data (which is either -1 or 0)?