Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Dear Sir,
Lets consider the folowing worksheet example: Tommy prepares a budget and submit it to Jimmy for reviewing. The budget is finally approved by Sally. All these are done in an Excel worksheet as follows: A B 1 USD 2 Budget Sales : 2,500,000 3 Budget Cost : 1,800,000 4 Budget Profit : 700,000 10 Prepared by : Tommy 11 Reviewed by : Jimmy 12 Approved by : Sally May I know how could Tommy write protect his figures in cell B2:B4 by using his own password ? If Tommy need to change the figures what are the keyboard steps ? The password that Tommy used is it different in each cell, or same throughout the a single Excel file or the whole Excel program itself ? What he need to do to change the password ? As the document is passed around, can Jimmy and Sally acknowledge at B11 and B12 with their own passwords ? Thanks Low -- A36B58K641 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This should do the trick.
(1) Select the cells that you want to lock out. (2) Righ click on the cells. Select Format Cells. (3) In the FOrmat Cells pop-up bx, go to the Protection tab. (4) Put a check-box in the Locked field. (5) Click OK. (6) Select Tools from the Menu. (7) Select Protection. (8) Enter a password if you so choose. (9) Click OK. On Jun 26, 9:56 am, Mr. Low wrote: Dear Sir, Lets consider the folowing worksheet example: Tommy prepares a budget and submit it to Jimmy for reviewing. The budget is finally approved by Sally. All these are done in an Excel worksheet as follows: A B 1 USD 2 Budget Sales : 2,500,000 3 Budget Cost : 1,800,000 4 Budget Profit : 700,000 10 Prepared by : Tommy 11 Reviewed by : Jimmy 12 Approved by : Sally May I know how could Tommy write protect his figures in cell B2:B4 by using his own password ? If Tommy need to change the figures what are the keyboard steps ? The password that Tommy used is it different in each cell, or same throughout the a single Excel file or the whole Excel program itself ? What he need to do to change the password ? As the document is passed around, can Jimmy and Sally acknowledge at B11 and B12 with their own passwords ? Thanks Low -- A36B58K641 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Oops... Also, select the cells that you want people to be able to
edit and uncheck the Locked Field in the FOrmat Cells Pop-up. :) On Jun 26, 10:46 am, Jennifer wrote: This should do the trick. (1) Select the cells that you want to lock out. (2) Righ click on the cells. Select Format Cells. (3) In the FOrmat Cells pop-up bx, go to the Protection tab. (4) Put a check-box in the Locked field. (5) Click OK. (6) Select Tools from the Menu. (7) Select Protection. (8) Enter a password if you so choose. (9) Click OK. On Jun 26, 9:56 am, Mr. Low wrote: Dear Sir, Lets consider the folowing worksheet example: Tommy prepares a budget and submit it to Jimmy for reviewing. The budget is finally approved by Sally. All these are done in an Excel worksheet as follows: A B 1 USD 2 Budget Sales : 2,500,000 3 Budget Cost : 1,800,000 4 Budget Profit : 700,000 10 Prepared by : Tommy 11 Reviewed by : Jimmy 12 Approved by : Sally May I know how could Tommy write protect his figures in cell B2:B4 by using his own password ? If Tommy need to change the figures what are the keyboard steps ? The password that Tommy used is it different in each cell, or same throughout the a single Excel file or the whole Excel program itself ? What he need to do to change the password ? As the document is passed around, can Jimmy and Sally acknowledge at B11 and B12 with their own passwords ? Thanks Low -- A36B58K641- Hide quoted text - - Show quoted text - |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello Jennifer,
Many thanks for the steps. Low -- A36B58K641 "Jennifer" wrote: Oops... Also, select the cells that you want people to be able to edit and uncheck the Locked Field in the FOrmat Cells Pop-up. :) On Jun 26, 10:46 am, Jennifer wrote: This should do the trick. (1) Select the cells that you want to lock out. (2) Righ click on the cells. Select Format Cells. (3) In the FOrmat Cells pop-up bx, go to the Protection tab. (4) Put a check-box in the Locked field. (5) Click OK. (6) Select Tools from the Menu. (7) Select Protection. (8) Enter a password if you so choose. (9) Click OK. On Jun 26, 9:56 am, Mr. Low wrote: Dear Sir, Lets consider the folowing worksheet example: Tommy prepares a budget and submit it to Jimmy for reviewing. The budget is finally approved by Sally. All these are done in an Excel worksheet as follows: A B 1 USD 2 Budget Sales : 2,500,000 3 Budget Cost : 1,800,000 4 Budget Profit : 700,000 10 Prepared by : Tommy 11 Reviewed by : Jimmy 12 Approved by : Sally May I know how could Tommy write protect his figures in cell B2:B4 by using his own password ? If Tommy need to change the figures what are the keyboard steps ? The password that Tommy used is it different in each cell, or same throughout the a single Excel file or the whole Excel program itself ? What he need to do to change the password ? As the document is passed around, can Jimmy and Sally acknowledge at B11 and B12 with their own passwords ? Thanks Low -- A36B58K641- Hide quoted text - - Show quoted text - |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You cannot password individual cells as you describe.
You could employ sheet_activate code that would check the log-in name to see which user has the file open. Each user would then have a certain set of cells they could alter in a protected worksheet. Private Sub Worksheet_Activate() With Sheets("Sheet1") ..Activate ..Unprotect Password:="justme" ..Cells.Locked = True End With Select Case Environ("UserName") Case "Tommy": Range("B2:B4").Locked = False ActiveSheet.EnableSelection = xlUnlockedCells Case "Jimmy" Range("C2:C4").Locked = False ActiveSheet.EnableSelection = xlUnlockedCells Case Else MsgBox "Not authorized to make changes" End Select ActiveSheet.Protect Password:="justme" End Sub You then protect the VBAProject with a password so the code is unviewable. Gord Dibben MS Excel MVP On Tue, 26 Jun 2007 07:56:00 -0700, Mr. Low wrote: Dear Sir, Lets consider the folowing worksheet example: Tommy prepares a budget and submit it to Jimmy for reviewing. The budget is finally approved by Sally. All these are done in an Excel worksheet as follows: A B 1 USD 2 Budget Sales : 2,500,000 3 Budget Cost : 1,800,000 4 Budget Profit : 700,000 10 Prepared by : Tommy 11 Reviewed by : Jimmy 12 Approved by : Sally May I know how could Tommy write protect his figures in cell B2:B4 by using his own password ? If Tommy need to change the figures what are the keyboard steps ? The password that Tommy used is it different in each cell, or same throughout the a single Excel file or the whole Excel program itself ? What he need to do to change the password ? As the document is passed around, can Jimmy and Sally acknowledge at B11 and B12 with their own passwords ? Thanks Low |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello Gord,
Thanks for your info. Kind Regards Low A36B58K641 "Gord Dibben" wrote: You cannot password individual cells as you describe. You could employ sheet_activate code that would check the log-in name to see which user has the file open. Each user would then have a certain set of cells they could alter in a protected worksheet. Private Sub Worksheet_Activate() With Sheets("Sheet1") ..Activate ..Unprotect Password:="justme" ..Cells.Locked = True End With Select Case Environ("UserName") Case "Tommy": Range("B2:B4").Locked = False ActiveSheet.EnableSelection = xlUnlockedCells Case "Jimmy" Range("C2:C4").Locked = False ActiveSheet.EnableSelection = xlUnlockedCells Case Else MsgBox "Not authorized to make changes" End Select ActiveSheet.Protect Password:="justme" End Sub You then protect the VBAProject with a password so the code is unviewable. Gord Dibben MS Excel MVP On Tue, 26 Jun 2007 07:56:00 -0700, Mr. Low wrote: Dear Sir, Lets consider the folowing worksheet example: Tommy prepares a budget and submit it to Jimmy for reviewing. The budget is finally approved by Sally. All these are done in an Excel worksheet as follows: A B 1 USD 2 Budget Sales : 2,500,000 3 Budget Cost : 1,800,000 4 Budget Profit : 700,000 10 Prepared by : Tommy 11 Reviewed by : Jimmy 12 Approved by : Sally May I know how could Tommy write protect his figures in cell B2:B4 by using his own password ? If Tommy need to change the figures what are the keyboard steps ? The password that Tommy used is it different in each cell, or same throughout the a single Excel file or the whole Excel program itself ? What he need to do to change the password ? As the document is passed around, can Jimmy and Sally acknowledge at B11 and B12 with their own passwords ? Thanks Low |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I password protect a workbook in Excel? | Excel Discussion (Misc queries) | |||
How can I password protect specific cell ranges in Excel? | Excel Discussion (Misc queries) | |||
How do I protect a single cell in Excel 2002? | Excel Discussion (Misc queries) | |||
Password protect cell ranges NOT sheet | Excel Discussion (Misc queries) | |||
How to password protect a cell but still be able to sort ? | Excel Worksheet Functions |