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

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
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,226,114
Messages
6,189,052
Members
453,522
Latest member
Seeker2025

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