Is there a way for VBA to leave a cell in edit mode?

Jeffrey Smith

Well-known Member
Joined
Feb 11, 2005
Messages
795
I'm trying to create multiple data validations for cells. I want the user to be in edit mode after the macro finishes. And it would be nice to place the cursor on a specific character. Any hints?

Jeff
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
yeah, well, um..... Thanks $MS for nothing! :~/

if I have to :(
Using DoEvents coupled with the two SendKeys calls seems to leave the NumLock in the same state it was in when the code was first run. Give it a try...

Code:
Sub LeaveInEditModeBeforeFifthCharacter()
  Dim Char As Long
  Char = 4  ' 5 for fifth character and -1 to move in front of that character
  Range("E3").Select
  SendKeys "{F2}", True
  DoEvents
  SendKeys "{Left  " & Len(ActiveCell.Text) - Char & "}", True
  DoEvents
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top