How to Add Date Picker To VBA UserForm

NDMDRB

Board Regular
Joined
Jun 20, 2016
Messages
164
Office Version
  1. 2016
Platform
  1. Windows
Hello,

I have a userform and looking for a way to add a popup calendar to insert a date in a textbox,

I searched google and found the way below, I followed it step by step, but it didn't work,
https://chandoo.org/wp/pop-up-calendar-excel-vba/

Do you have any way to activate it?


I have windows 10 in my laptop 64 bit
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
As it says in the article that only works on 32bit systems, the DatePicker is not available on 64bit systems.
 
Upvote 0
Thank you "NoSparks" & Fluff"

In this case, I already have a calendar form, but I'm not able to insert the selected date in the selected textbox

In my calendar form, in the Insert Button, I have the following code
Code:
Private Sub btOK_Click()
    dtSelectedDate = dtActiveDate
    ActiveCell.value = dtSelectedDate
    Unload Me
End Sub

This is what I use to insert date in a worksheet cells

Can you help me change this code to insert the selected date in the selected textbox?
 
Upvote 0

Forum statistics

Threads
1,214,430
Messages
6,119,442
Members
448,898
Latest member
drewmorgan128

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