Macro

RAM

Well-known Member
Joined
Oct 4, 2004
Messages
1,862
Hi guys,

Working on a sheet that isn't mine. What does this ws code do?
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Target = "" Then Exit Sub
If Target.Address <> "$A$69" Then Exit Sub
ActiveSheet.Name = Range("A69").Text
End Sub

Thanks

RAM
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
HI

Basically if the text in A69 changes, then the sheet is changed to the value of the cell. It checks to make sure that only 1 cell is selected, that cell does not contain a "blank" and the cell is A69.


Tony
 
Upvote 0
Code:
Private Sub Worksheet_Change(ByVal Target As Range) 
   '  If more than one cell is changed (as in copying/pasting multiple cells),
   '  Then do nothing
   If Target.Cells.Count > 1 Then Exit Sub 
   '  If the actioned cell is empty then do nothing (to avoid sheet anming errors)
   If Target = "" Then Exit Sub 
   '  If the actioned cell isn't A69 then don't do anything
   If Target.Address <> "$A$69" Then Exit Sub 
   '  Otherwise change the sheet name to whatever A69 is
   ActiveSheet.Name = Range("A69").Text 
End Sub
Note that it doesn't address invalid WS names and could be more efficient, but it has its uses.

HTH,

Smitty

EDIT: Beaten by the time zones! (Heya Tony!)
 
Upvote 0
Since I have you great coder on lines I could need help to tweak this wb code to be a Workbook_Open code:
Code:
Sub ProtectWorkbook()

    Dim wksOne As Worksheet
    Dim strPwd As String
    Dim strSharePwd As String

    Set wksOne = Application.ActiveSheet

    strPwd = InputBox("dw1210")
    strSharePwd = InputBox("dw1210")

    wksOne.ProtectSharing Password:=strPwd, _
        SharingPassword:=strSharePwd

End Sub

And at last, what's the best procedure of protecting the above VBA codes that has protection passwords?

Thanks,

RAM
 
Upvote 0
RAM said:
And at last, what's the best procedure of protecting the above VBA codes that has protection passwords?

Thanks,

RAM

Putting your code in an add-in is one of the more secure methods (though by no means foolproof).
 
Upvote 0
Thanks for the replay from another great coder on this board. Unfortunately this workbook will be shared with other remote computers and we were planning on using Excel just as it is, with no added toolbars, buttons or, as you suggested, add-ins, but if we do it anyway it must be included in the opening codes and the codes must enforce the use of codes.

Any suggestions?

Thanks for your replay.

RAM
 
Upvote 0
Why not just protect the VBA project? In the VBE, goto Tools-->VBA Project Properties-->Protection-->Lock Project for Viewing-->Add & Verify password.

Once you close the workbook and re-open, the password & protection will be applied.

That'll keep 99% of users honest.

If the worekbook is in Shared mode, then the VBA project is 100% unviewable anyway, until unshared.

Smitty
 
Upvote 0
Thanks Smitty for your replay. I believe that is what is needed for now. Let me get busy with it and we'll see what I can get out of it.

RAM
 
Upvote 0

Forum statistics

Threads
1,214,652
Messages
6,120,747
Members
448,989
Latest member
mariah3

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