Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() -- Stefano Gatto |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I would like to create a short macro that appends the current date and the
initials of the Excel user, at the end of the text contained in a cell. This will help identifying who wrote what, in a comment column. Ideally I would like that the user finds the cell in edit mode after s/he runs this macro, so s/he can enter text right away, instead of needing to click on F2. Can a macro end while a cell is in edit mode? Stefano Gatto |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub editmode()
Set r = Range("A1") r.Value = "hello world" r.Select Application.SendKeys "{F2}" DoEvents End Sub -- Gary''s Student - gsnu200837 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Programmatically copying range in design mode | Excel Programming | |||
Make "Edit" mode default, rather than "Enter"? | Excel Discussion (Misc queries) | |||
VSTO and Excel-- End Cell Edit Mode Programmatically? | Excel Programming | |||
Combo Box goes to edit mode even if design mode is in OFF position | Excel Discussion (Misc queries) | |||
Enter Excel Design Mode and Exit Design Mode | Excel Programming |