form that locks cells after data has been added

St. Uck

New Member
Joined
Jun 18, 2007
Messages
22
I have a form that adds data to rows and only want users to be able to input data using this form. At the moment the cells can be selected and edited. If i lock rows, columns or cells the userform will not run.

Is there a way to get the form to lock the cells after the data has been added and unlock them again if the amend or delete button is used?
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
When you show your UserForm use the Unprotect method to unprotect the sheet. When you unload the UserForm use the Protect method to reprotect the sheet.
 
Upvote 0
Thanks for replying. I have added the Unprotect when i show my userform but not sure how to protect again as it is unloaded by using the corner cross.

Any suggestions?
 
Upvote 0
This will fire when the UserForm is closed:

Code:
Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer)
    MsgBox "Reprotect the worksheet here"
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,823
Messages
6,121,779
Members
449,049
Latest member
greyangel23

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