unlock cell on exit

manmah

Board Regular
Joined
May 11, 2009
Messages
70
Please bear with me while I try to explain this..
I have a workbook which information is fed in through the frontpage. On running the MACRO the information is then sent to numerous other pages for working out costs, this then clears the boxes ready for the next batch of information. Unfortunately due to human error some errors do occur and my boss wants this spreadsheet to be perfect.
What I want to do is this:
I want to enter the date into the box and then I want the box to lock so that when the information is sent this box won't clear and the box will still contain the date entered. I have worked out how to lock a cell depending on information entered into another cell, and presume I can doctor that VBA so it works in the same way, but the other thing I want to do is for the box to then unlock when the spreadsheet is closed down so when it is re-opened the date can be changed to the new one????
Possible??????
Thanks
Mark
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
What do you mean by boxes ? Are you referring to worksheet cells or to something else ?
 
Upvote 0
I guess you could lock the cells concerned and protect the worksheet when opening the workbook and then reverse this action ipon closing. Something along these lines :

Code:
Private Sub Workbook_Open()

    Sheet1.Cells.Locked = False
    Sheet1.Range("A1:A10").Locked = True
    Sheet1.Protect

End Sub

Private Sub Workbook_BeforeClose(Cancel As Boolean)

    Sheet1.Unprotect
    Sheet1.Cells.Locked = True

End Sub
Where cells A1:A10 are the cells you want locked. change those cells and worksheet as required.
 
Upvote 0

Forum statistics

Threads
1,216,745
Messages
6,132,473
Members
449,729
Latest member
davelevnt

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