#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 6
Default date picker HELP

I dont want to type in the date I want to click on calendar
this is only a example

Date Description what I did with chash Cash withdraw
15/12/2007 Pay Koos R 10.00
? Pay taxi R 200 0
? Spent on dog R 165 R 112.25

--
Ak ZA
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default date picker HELP

You could try this.
Insert|Object|calendar control
A calendar should appear.
Right click the worksheet tab, view code and paste this in:-

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Cells.Count 1 Then Exit Sub
If Not Intersect(Target, Range("A1:A10")) Is Nothing Then' Change to suit
Calendar1.Top = Target.Top + Target.Height
Calendar1.Visible = True
Calendar1.Value = Now
ElseIf Calendar1.Visible Then Calendar1.Visible = False
End If
End Sub

Private Sub Calendar1_Click()
ActiveCell.Value = (Calendar1.Value)
ActiveCell.NumberFormat = "dd/mm/yyyy"' Change to suit
End Sub

Mike

"Andre ZA" wrote:

I dont want to type in the date I want to click on calendar
this is only a example

Date Description what I did with chash Cash withdraw
15/12/2007 Pay Koos R 10.00
? Pay taxi R 200 0
? Spent on dog R 165 R 112.25

--
Ak ZA

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
date picker Andre ZA Excel Worksheet Functions 3 December 27th 07 08:26 PM
date picker Andre ZA Excel Worksheet Functions 1 December 26th 07 02:55 PM
pop up Date time picker Mike Excel Discussion (Misc queries) 3 November 17th 06 08:00 PM
Date Time Picker Mike Excel Discussion (Misc queries) 0 November 16th 06 04:36 AM
Is there a way to get a Date Picker Box in Excel? Andrew Holzman Excel Discussion (Misc queries) 1 January 24th 06 09:46 PM


All times are GMT +1. The time now is 07:25 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"