Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,441
Default Overtype mode

Cool,

1) Lock the cells that you don't want overwritten
2) Protect the sheet.

OR

1)Protect the sheet, with blank cells unlocked and
2) use this change event code to lock any cells that were blank but are no longer blank

Private Sub Worksheet_Change(ByVal Target As Range)
Me.Unprotect
Target.Locked = True
Me.Protect
End Sub

Copy the code, right-click the sheet tab, select "View Code" and paste the code into the window that
appears.
Set the blank cells to unlocked (under format, protection tab) and protect the sheet with no
password. (You can add a password if you want....)

HTH,
Bernie
MS Excel MVP


"coolwolf590" wrote in message
...
Can you permanently disable overtype mode in an Excel 2003 spreadsheet? I
have designed a spreadsheet and it is vital that when a cell is clicked upon,
the cell does not overtype. I know that you can press F2 or double click, but
need the cell or sheet to do this automatically. Possibly a macro or Vb
command? I'm not an expert but am an MCP.
--
CW590



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
MODE calc where more than one mode number! Struggling in Sheffield[_2_] New Users to Excel 2 October 15th 09 04:52 PM
Mkae Mode function return "" instead of #N/A when there is no Mode Tonso Excel Discussion (Misc queries) 1 March 11th 07 10:38 AM
Combo Box goes to edit mode even if design mode is in OFF position Chas Excel Discussion (Misc queries) 0 January 7th 05 07:21 PM
coverting answer from Radian mode to degree mode Xmastrzman Excel Worksheet Functions 1 November 10th 04 04:45 PM
Enter Excel Design Mode and Exit Design Mode Bill Lunney Excel Programming 0 August 4th 03 07:48 AM


All times are GMT +1. The time now is 12:29 AM.

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

About Us

"It's about Microsoft Excel"