I have two unbound textboxes on a form. The first is for entering a year, the second has as its controlsource a function a function that turns that year into a date, Jan 1 of the following year. Eg. box 1 = 1997, box 2 is calculated to Jan 1, 1998
In certain circumstances, I need to change the value in box 1 through VBA and then recalculate box 2. I can’t get box 2 to recalculate properly. I’ve tried Me.box2.Requery and I get #Name? I’ve tried calling the function in code with the same problem. How do I get the function to be called to reflected the changed value of box 1?