Forum Discussion
Gertdj
Feb 21, 2020Copper Contributor
Ms Access different results from same query on different pc's
I have developed an Access 2016 application with an insert query from VBA. This insert query is reliant on a select query for input. The functionality works correctly on my pc, but the select quer...
- Feb 26, 2020
Gertdj And where are the positioned? It could be decimals normally having a dot, now a comma as the decimal separator. Always convert decimals to text with Str:
TextValue = Str(DecimalValue)
Gustav_Brock
Feb 26, 2020Iron Contributor
Gertdj And where are the positioned? It could be decimals normally having a dot, now a comma as the decimal separator. Always convert decimals to text with Str:
TextValue = Str(DecimalValue)
Gertdj
Feb 26, 2020Copper Contributor
Gustav_Brock - Thank you! That makes sense - I will check it out tonight and let you know asap.