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

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
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,224,820
Messages
6,181,162
Members
453,021
Latest member
Justyna P

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