ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   How to enter in Edit Mode programmatically (https://www.excelbanter.com/excel-programming/425315-how-enter-edit-mode-programmatically.html)

Stefano Gatto

How to enter in Edit Mode programmatically
 

--
Stefano Gatto

Stefano Gatto

How to enter in Edit Mode programmatically - my question
 
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


Gary''s Student

How to enter in Edit Mode programmatically - my question
 
Sub editmode()
Set r = Range("A1")
r.Value = "hello world"
r.Select
Application.SendKeys "{F2}"
DoEvents
End Sub

--
Gary''s Student - gsnu200837


All times are GMT +1. The time now is 11:42 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com