Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
jcb jcb is offline
external usenet poster
 
Posts: 8
Default can you open a calander to select a date in excel?

Trying to click on a cell that will then open a calander to allow you to
select a date
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default can you open a calander to select a date in excel?

Hi,

have a look at Ron De Bruin's page

http://www.rondebruin.nl/calendar.htm

Mike

"jcb" wrote:

Trying to click on a cell that will then open a calander to allow you to
select a date

  #3   Report Post  
Posted to microsoft.public.excel.misc
jcb jcb is offline
external usenet poster
 
Posts: 8
Default can you open a calander to select a date in excel?

Thanks, will have a go with this

"Mike H" wrote:

Hi,

have a look at Ron De Bruin's page

http://www.rondebruin.nl/calendar.htm

Mike

"jcb" wrote:

Trying to click on a cell that will then open a calander to allow you to
select a date

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default can you open a calander to select a date in excel?

On 20 Sty, 11:40, jcb wrote:
Trying to click on a cell that will then open a calander to allow you to
select a date


Go to the vba editor, insert a new form into the workbook. On that
form, insert a Calendar Control. Go the code of the form (F7), insert
the following macro in the

Private Sub cal1_Click()
ActiveCell.Value = cal1.Value
Unload Me
End Sub

(I assume you named the calendar control cal1)

Then go to the code of the worksheet, that you want that thing to work
on. Insert the following code:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.EnableEvents = False
calform.Show
Application.EnableEvents = True
End Sub

That's it.

Regards
lolo
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Auto link excel date to calander ener S Lodes Excel Worksheet Functions 0 December 19th 07 05:32 PM
Open Excel ... Select WorkSheet Ken Excel Discussion (Misc queries) 1 March 28th 07 02:04 AM
Using a calander for date select in cell A Excel Worksheet Functions 0 March 29th 06 04:51 AM
Does excel have a running calander glenn Excel Discussion (Misc queries) 0 January 6th 06 03:33 AM
When I select "Open" from the "File" menu in Excel, I get only a . dan Excel Discussion (Misc queries) 1 November 30th 04 11:25 PM


All times are GMT +1. The time now is 08:18 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"