I am working in an access 2003 table. I have a field of data called MonDesc that is formatted as a string. The field has the month and year combined as one number. ex. 082010. I added another field called MonOnlyDesc that is formatted as a number. I am trying to run an update query that extracts the month from the field MonDesc and adds to to the field MonOnlyDesc. I get a dataconversion error when I do the update. Any help would be appreciated.
Code:
'Query in SQL view
UPDATE DICT_ImpMonList SET DICT_ImpMonList.MonOnlyDesc = Int(Left([MonDesc],3));