I want to format a field in a table to take either dates or text. Now if I
format it for "short date" it won't let me type in text ie: N/A or not
needed. Can this be done?
No! A field in your table is either Date datatype or a Text datatype.
You cannot enter text into a Date field, but you can, of course, enter
a date as text into a Text field. But then the value is treated as
Text, and cannot be sorted or processed as a date without conversion.
I would suggest, if the data entered is a Date, make the field a
DataTime datatype and simply leave the value blank if it is "N/A".
You can always display "N/A" in a report if the field is blank by
using an unbound control instead of the DateField control:
=IIf(IsNull([DateField]),"N/A",[DateField])