ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Changing the value of a protected cell (https://www.excelbanter.com/excel-programming/370794-changing-value-protected-cell.html)

Shawn

Changing the value of a protected cell
 

Sub go()
Dim goal As Range
Set goal = Sheets("sheet1").Range("A1")

Range("A1") = goal + 1
End Sub

I get an error because this is on a protected sheet and protected cell. How
can I get result without having to unprotect the sheet?


--
Thanks
Shawn

Paul T.

Changing the value of a protected cell
 
You must either unlock the cell prior to protecting it, or unprotect
the sheet, change value, and then protect again. There is no other way
around it, or there would be no point to protecting it. If it is a
cell that I dont mind users editing, I unlock it, otherwise I do the
unprotect, change, protect method.


NickHK[_3_]

Changing the value of a protected cell
 
Shawn,
Look at the arguments for the Protect method.
You have an option of UIOnly (or something like that). That means that the
user cannot change the sheet, but code can.

NickHK

"Shawn" ...

Sub go()
Dim goal As Range
Set goal = Sheets("sheet1").Range("A1")

Range("A1") = goal + 1
End Sub

I get an error because this is on a protected sheet and protected cell.
How
can I get result without having to unprotect the sheet?


--
Thanks
Shawn




Tom Ogilvy

Changing the value of a protected cell
 
Assuming you don't want to unlock the cell before you protect the sheet, then

Sub go()
Dim goal As Range
Set goal = Sheets("sheet1").Range("A1")
ActiveSheet.Unprotect Password:="ABC"
Range("A1") = goal + 1
Activesheet.Protect Password:="ABC"
End Sub

--
Regards,
Tom Ogilvy



"Shawn" wrote:


Sub go()
Dim goal As Range
Set goal = Sheets("sheet1").Range("A1")

Range("A1") = goal + 1
End Sub

I get an error because this is on a protected sheet and protected cell. How
can I get result without having to unprotect the sheet?


--
Thanks
Shawn


Dave Peterson

Changing the value of a protected cell
 
UserInterfaceOnly = UIOnly

(just a clarification)

NickHK wrote:

Shawn,
Look at the arguments for the Protect method.
You have an option of UIOnly (or something like that). That means that the
user cannot change the sheet, but code can.

NickHK

"Shawn" ...

Sub go()
Dim goal As Range
Set goal = Sheets("sheet1").Range("A1")

Range("A1") = goal + 1
End Sub

I get an error because this is on a protected sheet and protected cell.
How
can I get result without having to unprotect the sheet?


--
Thanks
Shawn


--

Dave Peterson

NickHK[_3_]

Changing the value of a protected cell
 
Dave,
Thanks.
I'm currently on a Chinese system without Office installed, so it was
guesswork.

NickHK

"Dave Peterson"
...
UserInterfaceOnly = UIOnly

(just a clarification)

NickHK wrote:

Shawn,
Look at the arguments for the Protect method.
You have an option of UIOnly (or something like that). That means that
the
user cannot change the sheet, but code can.

NickHK

"Shawn"
...

Sub go()
Dim goal As Range
Set goal = Sheets("sheet1").Range("A1")

Range("A1") = goal + 1
End Sub

I get an error because this is on a protected sheet and protected cell.
How
can I get result without having to unprotect the sheet?


--
Thanks
Shawn


--

Dave Peterson




Dave Peterson

Changing the value of a protected cell
 
Wow!

You live in interesting times.

(not meant as a Chinese curse!)

NickHK wrote:

Dave,
Thanks.
I'm currently on a Chinese system without Office installed, so it was
guesswork.

NickHK

"Dave Peterson"
...
UserInterfaceOnly = UIOnly

(just a clarification)

NickHK wrote:

Shawn,
Look at the arguments for the Protect method.
You have an option of UIOnly (or something like that). That means that
the
user cannot change the sheet, but code can.

NickHK

"Shawn"
...

Sub go()
Dim goal As Range
Set goal = Sheets("sheet1").Range("A1")

Range("A1") = goal + 1
End Sub

I get an error because this is on a protected sheet and protected cell.
How
can I get result without having to unprotect the sheet?


--
Thanks
Shawn


--

Dave Peterson


--

Dave Peterson

NickHK[_3_]

Changing the value of a protected cell
 
Dave,
Interesting times for sure, but also Hong Kong, so not surprising really.

NickHK

"Dave Peterson"
...
Wow!

You live in interesting times.

(not meant as a Chinese curse!)

NickHK wrote:

Dave,
Thanks.
I'm currently on a Chinese system without Office installed, so it was
guesswork.

NickHK

"Dave Peterson"
...
UserInterfaceOnly = UIOnly

(just a clarification)

NickHK wrote:

Shawn,
Look at the arguments for the Protect method.
You have an option of UIOnly (or something like that). That means that
the
user cannot change the sheet, but code can.

NickHK

"Shawn"
...

Sub go()
Dim goal As Range
Set goal = Sheets("sheet1").Range("A1")

Range("A1") = goal + 1
End Sub

I get an error because this is on a protected sheet and protected
cell.
How
can I get result without having to unprotect the sheet?


--
Thanks
Shawn

--

Dave Peterson


--

Dave Peterson




Shawn

Changing the value of a protected cell
 
I have decided to use sort of a back door method. I am going to make that
cell a formula equal to a value in another sheet that is unprotected.
--
Thanks
Shawn


"Shawn" wrote:


Sub go()
Dim goal As Range
Set goal = Sheets("sheet1").Range("A1")

Range("A1") = goal + 1
End Sub

I get an error because this is on a protected sheet and protected cell. How
can I get result without having to unprotect the sheet?


--
Thanks
Shawn



All times are GMT +1. The time now is 05:24 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com