Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
purefct
 
Posts: n/a
Default In Excel, How do I keep the OVR on all the time

How do I keep the OVR on all the time? Each time I edit a cell in Excel I
have to press the insert ket to OVR. When I exit or save the cell, and edit
a new cell, the OVR is off and I have to turn it back on.
  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default In Excel, How do I keep the OVR on all the time

The only time I could toggle the insert key was when I was editing the cell.

And just changing the selection took me out of edit mode.

I would find this very irritating, but I could use a worksheet event that would
put me into edit mode and toggle the Insert key. (This means that you'll be
editing the active cell each time you change the selection, right???)

If you want to try this on one sheet, you can rightclick on the worksheet tab
that should have this behavior and select view code. Paste this into the code
window that you see:

Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
SendKeys "{F2}{Insert}"
End Sub

Remember that hitting the Escape key will get you back to "normal".

If you really want to use this for all the worksheets in the workbook, you could
use a workbook event.

If you really want to use this for all the worksheets in any workbook, you'll
have to use an application event.

You can read more about events at:
Chip Pearson's site:
http://www.cpearson.com/excel/AppEvent.htm
http://www.cpearson.com/excel/events.htm

David McRitchie's site:
http://www.mvps.org/dmcritchie/excel/event.htm


purefct wrote:

How do I keep the OVR on all the time? Each time I edit a cell in Excel I
have to press the insert ket to OVR. When I exit or save the cell, and edit
a new cell, the OVR is off and I have to turn it back on.


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Multiple Excel versions. Naveen Mukkelli Excel Discussion (Misc queries) 0 May 16th 06 12:55 AM
Determining current Time Zone In Excel Shaun_C Excel Discussion (Misc queries) 2 April 7th 06 06:29 PM
time sheet drop down lists Steve Excel Discussion (Misc queries) 12 March 18th 06 10:30 PM
TRYING TO SET UP EXCEL SPREADSHEET ON MY COMPUTER MEGTOM New Users to Excel 5 October 27th 05 03:06 AM
Excel Range Value issue (Excel 97 Vs Excel 2003) Keeno Excel Discussion (Misc queries) 2 June 13th 05 02:01 PM


All times are GMT +1. The time now is 12:54 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"