Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello! I have a spreadsheet with January 01, 2006 thru December 31, 2006 in
ascending order in column A, each date in a different cell (A1, A2, A3, etc.). I don't enter data into this sheet everyday..in fact, months could go by before having to enter an occurance for say, March 31. Is there a way to have excel, upon opening the spreadsheet, advance the cursor to the cell with that day's date in it? -- Thank you all for your help! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Using function Date rather than Today()
Works for me. Private Sub Workbook_Open() Dim r As Long Dim T As Long T = Date r = Application.Match(T, Columns(1), True) Application.Goto Cells(r, 1) End Sub Put the code in "this workbook" to get there right click onto the icon to the left of "File" in the menu bar. select view code and select "this workbook" select workbook in the dropdown of the left pane. insert the code without the top line and the "end sub" line as they are already there......... -- Greetings from New Zealand Bill K "James D" wrote in message ... Hello! I have a spreadsheet with January 01, 2006 thru December 31, 2006 in ascending order in column A, each date in a different cell (A1, A2, A3, etc.). I don't enter data into this sheet everyday..in fact, months could go by before having to enter an occurance for say, March 31. Is there a way to have excel, upon opening the spreadsheet, advance the cursor to the cell with that day's date in it? -- Thank you all for your help! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
formula to calculate future date from date in cell plus days | Excel Worksheet Functions | |||
cell color change based on due date | New Users to Excel | |||
Making a auto date entered into a cell permanent from a template | Excel Discussion (Misc queries) | |||
Turn cell red if today is greater or equal to date in cell | New Users to Excel | |||
Extract date from cell | Excel Worksheet Functions |