Open the file Personal.xls
Then Insert a Userform
Then change properties of Userform with
Name :frmCalendar
Caption: Select a Date
Then go to View >Toolbox>Tools>Additional Controls and choose Calendar Control(Active X control)
Next add a command button.
Place the Command button on Userform.
Do the following changes in properties window
Name: cmdClose
Cancel: True
VBA code for Commandbutton:
private sub cmdClose_Click()
Unload Me
End sub
VBA code for Calendar control
Private sub Calendar1_Click()
Activecell.value=Calendar1.value
Unload me
End sub
Then Insert module and create a macro
sub openCalendar()
frmCalendar.Show
End sub
In Personal.xls, click office button.Then click Excel Options.
Then choose Customised option.
Choose Macros from Command drop-down.
Add Macro Opencalendar() to quick access toolbar.
Then do double click on OK button.
Then Insert a Userform
Then change properties of Userform with
Name :frmCalendar
Caption: Select a Date
Then go to View >Toolbox>Tools>Additional Controls and choose Calendar Control(Active X control)
Next add a command button.
Place the Command button on Userform.
Do the following changes in properties window
Name: cmdClose
Cancel: True
VBA code for Commandbutton:
private sub cmdClose_Click()
Unload Me
End sub
VBA code for Calendar control
Private sub Calendar1_Click()
Activecell.value=Calendar1.value
Unload me
End sub
Then Insert module and create a macro
sub openCalendar()
frmCalendar.Show
End sub
In Personal.xls, click office button.Then click Excel Options.
Then choose Customised option.
Choose Macros from Command drop-down.
Add Macro Opencalendar() to quick access toolbar.
Then do double click on OK button.
No comments:
Post a Comment