Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is it possible to automatically add the time / date to a comment box in Excel?
---------------- This post is a suggestion for Microsoft, and Microsoft responds to the suggestions with the most votes. To vote for this suggestion, click the "I Agree" button in the message pane. If you do not see the button, follow this link to open the suggestion in the Microsoft Web-based Newsreader and then click "I Agree" in the message pane. http://www.microsoft.com/office/comm...lic.excel.misc |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Ahmed,
If you just want the current date/time in a cell, enter: = now() into the cell and format the cell as mm/dd/yyyy h:mm "Ahmed Madkour" wrote: Is it possible to automatically add the time / date to a comment box in Excel? ---------------- This post is a suggestion for Microsoft, and Microsoft responds to the suggestions with the most votes. To vote for this suggestion, click the "I Agree" button in the message pane. If you do not see the button, follow this link to open the suggestion in the Microsoft Web-based Newsreader and then click "I Agree" in the message pane. http://www.microsoft.com/office/comm...lic.excel.misc |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This code will append the current date to existing comments in the comment
box of the selected cell. Sub DateToCommentBox() ActiveCell.Select If Not Selection.Comment Is Nothing Then Selection.Comment.Visible = True Selection.Comment.Text Text:=ActiveCell.Comment.Text & Chr(10) & " " & Date & Chr(10) Selection.Comment.Visible = False End If End Sub If copying, watch out for word-wrap Vaya con Dios, Chuck, CABGx3 "Ahmed Madkour" wrote: Is it possible to automatically add the time / date to a comment box in Excel? ---------------- This post is a suggestion for Microsoft, and Microsoft responds to the suggestions with the most votes. To vote for this suggestion, click the "I Agree" button in the message pane. If you do not see the button, follow this link to open the suggestion in the Microsoft Web-based Newsreader and then click "I Agree" in the message pane. http://www.microsoft.com/office/comm...lic.excel.misc |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Date stamp spreadsheet in excel to remind me of completion date | Excel Worksheet Functions | |||
How to Join/concatenate a date field with a time field in Excel? | Excel Discussion (Misc queries) | |||
Imported Date & Time format with calcs. managed in excel from imrp | Excel Worksheet Functions | |||
How do I make a time Stamp in excel? | Excel Discussion (Misc queries) | |||
can you date time stamp entries in excel | Excel Discussion (Misc queries) |