Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel,microsoft.public.excel.programming,microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Nothing built-in, but you can check either at the WS or WB level:
Private Sub Worksheet_Change(ByVal Target As Range) Dim Cell As Range Application.EnableEvents = False For Each Cell In Target.Cells If Cell.HasFormula = True Then Cell.Value = "" MsgBox "No formulae allowed" End If Next Application.EnableEvents = True End Sub NickHK "news.freedom2surf.net" wrote in message ... Hi, I have a workbook which I want to prevent users from entering formulae globally across the entire workbook. There are however formuale already entered into the workbook but want to prevent any new formulae being entered. Can this be accomplished? How would I do this? Many thanks. Ian E. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
prevent data entry into cell? | Excel Worksheet Functions | |||
Prevent entry in a column | Excel Worksheet Functions | |||
How can I prevent loosing formula during data entry? | Excel Discussion (Misc queries) | |||
How to prevent double entry in excel? | Excel Discussion (Misc queries) | |||
Prevent entry based on another cell value | Excel Worksheet Functions |