Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I have a master spreadsheet that all users use to input operational data. Some users try to duplicate inputs by using equal signs and referencing similar data. Is it possible to prevent users from creating/inputting formulas? -- TEAM ------------------------------------------------------------------------ TEAM's Profile: http://www.excelforum.com/member.php...o&userid=22810 View this thread: http://www.excelforum.com/showthread...hreadid=484105 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
TEAM.
How about: Private Sub Worksheet_Change(ByVal Target As Range) 'If InDebugMode=False then With Target If .HasFormula = True Then MsgBox "No formulae allowed" .Value = "" .Select End If End With 'EndIf NickHK "TEAM" wrote in message ... I have a master spreadsheet that all users use to input operational data. Some users try to duplicate inputs by using equal signs and referencing similar data. Is it possible to prevent users from creating/inputting formulas? -- TEAM ------------------------------------------------------------------------ TEAM's Profile: http://www.excelforum.com/member.php...o&userid=22810 View this thread: http://www.excelforum.com/showthread...hreadid=484105 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to Prevent Duplicate Data from inputing using input application? | Excel Worksheet Functions | |||
How to Prevent Duplicate Data from inputing using input application? | Excel Discussion (Misc queries) | |||
How to Prevent Duplicate Data from inputing using input application? | New Users to Excel | |||
How do I lock a column in EXCEL to prevent changes-can add input | Excel Worksheet Functions | |||
Prevent Formulas from Advancing | Excel Discussion (Misc queries) |