Populate a date text box based off another

T

TKM

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.
 
K

KARL DEWEY

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