K Kevbro7189 Jul 9, 2008 #1 I know this should be simple but.... I have a Text box that I want to show what date it will be in 3 months.
I know this should be simple but.... I have a Text box that I want to show what date it will be in 3 months.
K Kevbro7189 Jul 9, 2008 #2 I want the Text Box to display the date it will be 3 months from whatever date the user is using the program. I tried to use the equation you posted but I get nothing other than #NAME?.
I want the Text Box to display the date it will be 3 months from whatever date the user is using the program. I tried to use the equation you posted but I get nothing other than #NAME?.
J John W. Vinson Jul 9, 2008 #3 I want the Text Box to display the date it will be 3 months from whatever date the user is using the program. I tried to use the equation you posted but I get nothing other than #NAME?. Click to expand... Set the Control Source property of a textbox on the form to =DateAdd("m",3,Date()) The code Linq posted works just fine in a VBA module; the syntax is just a bit different in a form.
I want the Text Box to display the date it will be 3 months from whatever date the user is using the program. I tried to use the equation you posted but I get nothing other than #NAME?. Click to expand... Set the Control Source property of a textbox on the form to =DateAdd("m",3,Date()) The code Linq posted works just fine in a VBA module; the syntax is just a bit different in a form.