Adding comments

tamrob23

Board Regular
Joined
Jun 20, 2006
Messages
203
Good Morning all,

I have a spreadsheet that is password protected - the only thing I have checked is:

Select Locked Cells
Select Unlocked Cells
Edit Objects


I have edit objects checked because I need to use the "Insert Comments" option. Is there any way to keep the "Insert Comments" option but make sure that the user can not use the Copy/Paste Function?? Any help would be greatly appreciated.
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Having the "edit objects" checked doesn't interfere with Copy/Paste Function being disabled when the sheet is protected.

Regards.
 
Upvote 0
Hi,

to disable copypaste within Excel you can use a sheet-event
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.CutCopyMode = False
End Sub
this needs macros to be enabled of course
pasting data from external sources will still be possible

kind regards,
Erik
 
Upvote 0

Forum statistics

Threads
1,214,383
Messages
6,119,198
Members
448,874
Latest member
Lancelots

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top