I have protected sheet with some data and few users should edit the specified
cells in the worksheet.
Everything is done but I need to disable copy and paste function to avoid
copy and paste in the cells, were in users should only type in the cells
where required.
Mike - 17 Mar 2007 05:08 GMT
Try this
Columns("G:G").Select 'Replace with your column or rows
Selection.Locked = False
Sheets("Sheet1").Protect Password:="your password here"
> I have protected sheet with some data and few users should edit the specified
> cells in the worksheet.
>
> Everything is done but I need to disable copy and paste function to avoid
> copy and paste in the cells, were in users should only type in the cells
> where required.