Dynamically input date in one textbox after update of another

MikeeRDX

Board Regular
Joined
Feb 16, 2014
Messages
98
Hello,

I have a Userform that utilizes two textboxes for To and From date fields. The intent is to allow user to enter two different dates in the fields; however, I would like the "To"
textboxB field to automatically be updated with whatever date the user has entered in the "From" textboxA. The user can either leave that or change it to a different "To" date if they wish.

Can someone assist me if the VBA code to accomplish this?

Thank you everyone.
 
Last edited:

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Hi,
maybe this:

Code:
Private Sub TextBoxA_Change()
        Me.TextBoxB.Value = Me.TextBoxA.Value
End Sub

but this does not check a date has been entered.

Dave
 
Upvote 0
Awesome solution dmt32. I used your code but place it in the AfterUpdate for the txtboxA. SO that after I have inputted the from date, the AfterUpdate code will also run the script to place the same date in the "To" field. Thank you!
 
Upvote 0

Forum statistics

Threads
1,223,904
Messages
6,175,295
Members
452,632
Latest member
jladair

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top