Excel Datepicker to show by default NA value

krishhi

Active Member
Joined
Sep 8, 2008
Messages
328
Hello, Is there a way to make a Default Value N/A for Datepicker. So, user will know that there is no date selected for a particular.

Thank you in advance.
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
One possibility might be to set the CheckBox property to True. This way, when the the userform is shown, the datepicker will have an unchecked checkbox and the datepicker itself will appear somewhat greyed out. Then, once a date is selected, the checkbox gets automatically checked and the datepicker will appear without being greyed out. And, in code, you can either assign Null or an empty string ("") to uncheck the checkbox and grey out the datepicker...

Code:
DTPicker1.Value = Null

or

Code:
DTPicker1.Value = ""

Hope this helps!
 
Upvote 0

Forum statistics

Threads
1,214,962
Messages
6,122,482
Members
449,088
Latest member
Melvetica

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