I am using Excel where certain fields are allowed for user input and other cells are to be protected. I have used Tools Protect sheet, however after doing this I am not able to change the values in the VBA script. I need to restrict the sheet to stop user input, at the same time allow the VBA code to change the cell values based on certain computations.
|
Try using
If the UserInterfaceOnly parameter is set to true, VBA code can modify protected cells. |
||||
|
|
You can modify a sheet via code by taking these actions
In code this would be:
The weakness of this method is that if the code is interrupted and error handling does not capture it, the worksheet could be left in an unprotected state. The code could be improved by taking these actions
The code to do this would be:
This code renews the protection on the worksheet, but with the ‘UserInterfaceOnly’ set to true. This allows VBA code to modify the worksheet, while keeping the worksheet protected from user input via the UI, even if execution is interrupted. This setting is lost when the workbook is closed and re-opened. The worksheet protection is still maintained. So the 'Re-protection' code needs to be included at the start of any procedure that attempts to modify the worksheet or can just be run once when the workbook is opened. |
|||
|
|
|
and re-protect it after you're done:
Edit: Looks like this workaround may have solved Dheer's immediate problem, but for anyone who comes across this question/answer later, I was wrong about the first part of my answer, as Joe points out below. You can protect a sheet to be editable by VBA-only, but it appears the "UserInterfaceOnly" option can only be set when calling "Worksheet.Protect" in code. |
||||
|
|
See this question for more details: |
|||
|
|
