GinaWhipp
AWF VIP
- Local time
- Today, 10:04
- Joined
- Jun 21, 2011
- Messages
- 5,899
Hard coding would be just to test not to put into production.
The way the data hits the table should not be a problem. However, if you are linking to the Excel file and then running the query against that it could be the problem. Though the one you upload has not links and still seeing error, so probably not that.
Another thing to keep in mind is earlier versions of Access were and still are a lot more tolerant of it's newer versions.
All that said I did find something, try changing...
to...
Notice I replaced the DOT, do this for all the fields you are referring to and see if that helps.
The way the data hits the table should not be a problem. However, if you are linking to the Excel file and then running the query against that it could be the problem. Though the one you upload has not links and still seeing error, so probably not that.
Another thing to keep in mind is earlier versions of Access were and still are a lot more tolerant of it's newer versions.
All that said I did find something, try changing...
Code:
[Forms]![frmChart_LocationCat].[BeginDate]
to...
Code:
[Forms]![frmChart_LocationCat]![BeginDate]
Notice I replaced the DOT, do this for all the fields you are referring to and see if that helps.