If Nov1005 represents November 10, 2005 (wasn't too sure on that),
and this format is consistent throughout your table, you can use,
a combination of string functions (left(), right(), mid()) and the DateValue() function to convert it to DateTime data format, e.g.:
x = "Nov1005"
y = datevalue(left(x, 3) & "/" & mid(x,4,2) & "/" & right(x, 2))
? y
11/10/2005
...and, to show that y is truly in datetime data format
? cdbl
38666
It becomes a little hairier if your format varies, e.g.
Nov105 rather than Nov0105 to represent 1 November 2005.
x = "Nov105"
y = datevalue(left(x, 3) & "/" & mid(x, 4, iif(len(x) = 6, 1, 2)) & "/" & right(x, 2))
? y
11/1/2005
? cdbl

38657
...and, to show it works using 01 rather than 1 to designate the day:
x = "Nov0105"
y = datevalue(left(x, 3) & "/" & mid(x, 4, iif(len(x) = 6, 1, 2)) & "/" & right(x, 2))
? y
11/1/2005
? cdbl

38657
Regardless, if you set it up right, it's a 'one-liner'. No horrendous Iif() statements.
HTH - Bob