Examples of data types are integer, long integer, date, string, single
(floating point number), object etc.
Type mismatch error happens when you are tryining to assign a variable of
one type to another variable of an incompatible type.
Most of the time Access will handle the conversion automatically.
But there are cases where the values are incompatible, such as trying to
assign Null to a string variable. A string can only hold ASCII characters. A
Null value would be the contents of a table field where no entry has been
made.
Ragnar