Thread
:
Looping through the F2 command
View Single Post
#
3
Posted to microsoft.public.excel.programming
Frank Kabel
external usenet poster
Posts: 3,885
Looping through the F2 command
Hi
Sub F2_update()
Dim c As Range
For Each c In Selection
SendKeys "{F2}", True
SendKeys "{ENTER}", True
Next c
End Sub
Just highlight the rows/columns you want to process and start this
macro
Frank
Reply With Quote
Frank Kabel
View Public Profile
Find all posts by Frank Kabel