Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
i am programming an excel worksheet in which i need a cell to me able to
display to me the current system date. That is anytime i access the file, the cell should be able to pick the current date as at the day i am accessing it. please help |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi mechi
Write an Auo_Open macro that runs when you open the file. Write the Date/Time in a cell you want to have it. Example: Sub Auto_Open() Range("A1") = Now() End Sub Regards reklamo "mechi" wrote: i am programming an excel worksheet in which i need a cell to me able to display to me the current system date. That is anytime i access the file, the cell should be able to pick the current date as at the day i am accessing it. please help |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
with activesheet.range("A1")
.numberformat = "mm/dd/yyyy" .value = date end with now will include the time. mechi wrote: i am programming an excel worksheet in which i need a cell to me able to display to me the current system date. That is anytime i access the file, the cell should be able to pick the current date as at the day i am accessing it. please help -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
format cell if date not current | Excel Worksheet Functions | |||
Pick only date from DD/MM/YY format | Excel Discussion (Misc queries) | |||
Getting the Date Format Being Used By The Operating System And Exc | Excel Programming | |||
have a calendar pop up in a cell to pick & insert a date in excel | Excel Worksheet Functions | |||
Hide/Unhide Columns representing dates as per Current System Date! | Excel Programming |