Situation
The DB stores property address numbers in a text field (because a street number could be something like 21A, for example)
In the same DB, another field holds the value of the street address number.
The conversion mechanism that accomplished this in the past looks like this in SQL:
UPDATE Properties SET Properties.Valtstnumb = Val([tstnumb])
WHERE (((Properties.Valtstnumb) Is Null));
tstnumb represents the address number (target street number). tstnumb is a text field.
Valtstnumb is the numeric conversion of the contents of tstnumb.
Running the query produces a type mismatch error.