Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming
|
|||
|
|||
![]()
I would like to have a cell enter the current date when I make an entry in
another cell, but I would like it to be static. The today() and now() both seem to be volatile. I know that I could use cntl ; but I would like it to be entered automatically. Thanks -- Jeff Ciaccio Dallas, GA (W) 770-591-6819 x-274 http://mywpages.comcast.net/ciaccio8515 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() -----Original Message----- I would like to have a cell enter the current date when I make an entry in another cell, but I would like it to be static. The today() and now() both seem to be volatile. I know that I could use cntl ; but I would like it to be entered automatically. Thanks -- Jeff Ciaccio Dallas, GA (W) 770-591-6819 x-274 http://mywpages.comcast.net/ciaccio8515 Jeff, I assume you are familiar with the vba environment in Excel. Go ahead and go into the VBA environment (ALT+F11). Dbl Click the worksheet you want to do this with. Select Worksheet in the combo box at the top left. Goto the Worksheet_Change. Do something like the following: IF Target.Col=X and Target.Row=Y THEN Target.offset(0,5)=str(Date) 'go over 5 columns and place date stemp. END IF -Paul |
#3
![]()
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming
|
|||
|
|||
![]()
On Thu, 24 Jul 2003 15:38:03 -0400, "JC Home" wrote:
I would like to have a cell enter the current date when I make an entry in another cell, but I would like it to be static. The today() and now() both seem to be volatile. I know that I could use cntl ; but I would like it to be entered automatically. Thanks Record a macro where you type =now()into any blank cell, copy, paste-special/value. Anywhere you want to insert a static date, select that cell and run the macro. Assigning that mcro to a key combination makes it really easy to use. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do I make "NOW" function static | Excel Worksheet Functions | |||
How can i make excel to highlight today using conditional formating | Excel Worksheet Functions | |||
How to make toolbars static with IE7 | Excel Discussion (Misc queries) | |||
How to make the Result of a TODAY Function static? | Excel Worksheet Functions | |||
How do I make the now() static and not change with calculation? | Excel Worksheet Functions |