Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a protect sheet with only few cells where users can enter data.
Is there anyway to restrict users not to do a copy paste in those areas? Any help greatly appreciated. Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
With code you can use this event in the Thisworkbook module Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range) Application.CutCopyMode = False End Sub You must also disable drag and drop -- Regards Ron de Bruin http://www.rondebruin.nl "wana be xl master" wrote in message ... I have a protect sheet with only few cells where users can enter data. Is there anyway to restrict users not to do a copy paste in those areas? Any help greatly appreciated. Thanks |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Here is some selection change code that you need to put into the specified
sheet... (Right click the sheet tab and select Veiw Code) Private Sub Worksheet_SelectionChange(ByVal Target As Range) with Application If .CutCopyMode = xlCopy Then .CutCopyMode = False If .CutCopyMode = xlCut Then .CutCopyMode = False 'Prevents Cut end with End Sub -- HTH... Jim Thomlinson "wana be xl master" wrote: I have a protect sheet with only few cells where users can enter data. Is there anyway to restrict users not to do a copy paste in those areas? Any help greatly appreciated. Thanks |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Owesome....Thanks to Ron and Jim
:) "wana be xl master" wrote: I have a protect sheet with only few cells where users can enter data. Is there anyway to restrict users not to do a copy paste in those areas? Any help greatly appreciated. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
RESTRICT TO PASTE VALUES ONLY | Excel Discussion (Misc queries) | |||
RESTRICT PASTE | Excel Worksheet Functions | |||
Ability to paste from Picture Manager to Excel | Setting up and Configuration of Excel | |||
Have lost the ability to paste from the keyboard or menu | Excel Discussion (Misc queries) | |||
How do I restrict data movement (cut & paste) to only one column? | Excel Discussion (Misc queries) |