Populate a date text box based off another

G

Guest

I have a text box (text box 1) that is a "date" datatype. I also have another
date text box (text box 2) that I would like to populate (add 3 weeks) based
off the first text boxes date. How is this done?

Please excusee my last post. My client just clarified it for me.
 
G

Guest

Call a macro from the After Update property to Set Value.
Item [Forms]![YourFormName]![NewTextBoxDate]
Expression DateAdd("w",3,[Forms]![YourFormName]![FirstTextBoxDate])
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top