Mike Krailo
Well-known member
- Local time
- Today, 05:18
- Joined
- Mar 28, 2020
- Messages
- 1,681
The report I have runs perfectly fine on any system that has MS Access installed on it, but comes up with a Enter Parameter Value pointing to the Date identifier when running on a machine that only has the runtime installed. I trouble shot this down to a text box in the footer that contains the following.
So it is using the
Code:
="Generated: " & Date()
VBA.Date
function and maybe this has to do with early or late binding but what is the best way to achieve the desired result without getting the parameter error. I thought about making a simple function to do the same thing but I'm interested in avoiding this problem in the future so I need to understand what is going on in general here.