Hi,
There is plenty of documentation on this but nothing that seems to help. I have a LEFT function in a query that does not work on Access RunTime 2010 while it works perfectly fine on Access 2010.
Basically, I have a memo field called Notes and in the query I create a new field called ShortNote with the following function: IIF(LEN([Note])>45,LEFT([NOTE],45)&"...",[Note])
Again that works perfectly fine on any machine running full Ms Access 2010, the issue appears on machines that run Access RunTime only.
I have isolated each function and it is definitely LEFT that is the problem. I have also tried MID and the same problem appears. Same error message comes with the DATE() function.
I have been told it could be a reference issue, some others said it is not. And if it is a reference issue, how do you want to check missing reference in a runtime environment anyway.
Thanks for your help!