I have been doing quite a bit of research about Visual Basic and trying to improve some of my databases and some modules I have in Excel. In my research, I came across the phrase "Option Strict On". From what I read, when this is placed prior to any event handlers, it prevents automatic conversions of values. One of the modules I have in Excel exports certain data to another spreadsheet. Then some of my co-workers import that spreadsheet into a database. For some reason, when the data is imported into the database, the formats are changed (numbers are formatted as text, where they are formatted as "General" in the spreadsheet). I thought if I added this line at the beginning, I could prevent that from happening. However, Excel and Access with neither one allow me to use this statement. I've put it under the "Option Explicit" statement and I have tried replacing the "Option Explicit" statement with the "Option Strict On" statement, and neither way works. Do you know why I can't use this statement? Do you have any suggestions as to how to stop Access from changing the formats upon import?