run code from another worksheet but same workbook

Trevor3007

Well-known Member
Joined
Jan 26, 2017
Messages
667
Office Version
  1. 365
Platform
  1. Windows
good evening,

I use this code:-

Sub Gencode()


ActiveSheet.Unprotect





Static IsRandomized As Boolean
Dim i As Integer, PW1 As String
Dim cell As Range, PW As String

If Not IsRandomized Then Randomize: IsRandomized = True

For Each cell In Range("b3:b199")
PW = vbNullString
For i = 1 To 8
Do
DoEvents
PW1 = Chr(Int((97 - 122 + 1) * Rnd + 122)) ' Lower case alpha
Loop Until InStr(1, PW, PW1, 1) = 0
PW = PW & PW1
Next i
PW = Replace(PW, Mid(PW, Int(8 * Rnd + 1), 1), Int(8 * Rnd + 1))
cell.Value = PW
Next cell

ActiveSheet.Protect DrawingObjects:=False, Contents:=True, Scenarios:= _
False, AllowFormattingCells:=True



End Sub


it runs fine if I just run it from the applicable worksheet. My issue is I want to run this from another worksheet within the workbook . If I try to run from another worksheet it puts the code into the wrong worksheet column.

Is anyone able to solve this for me:confused:

KR
Trevor3007:cool:
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Hi

If you want it to perform its actions in a specific worksheet then you will need to be explicit.

e.g. Sheets("SheetNameHere").Range("b3:b199")

otherwise any generic code will run just wherever you run it. :)
 
Upvote 0
hi & thank you for your swift reply.

The worksheet/tab name is called 'Code' could you kindly place the applicable into the code I use for me , as I have tried to do it myself but just get errors when I try ?

thanks again
Trevor3007
 
Upvote 0
You need to keep trying or you will never learn... mistakes and errors are good (so long as you learn from them ;) )

Code:
Sub Gencode()
Static IsRandomized As Boolean
Dim i As Integer, PW1 As String
Dim cell As Range, PW As String


With Sheets("Code") ' Change Code to the name of the sheet this is to work on.
    .Unprotect




    If Not IsRandomized Then Randomize: IsRandomized = True


    For Each cell In .Range("b3:b199")
        PW = vbNullString
            For i = 1 To 8
                Do
                DoEvents
                    PW1 = Chr(Int((97 - 122 + 1) * Rnd + 122)) ' Lower case alpha
                Loop Until InStr(1, PW, PW1, 1) = 0
            PW = PW & PW1
            Next i
        PW = Replace(PW, Mid(PW, Int(8 * Rnd + 1), 1), Int(8 * Rnd + 1))
        cell.Value = PW
    Next cell


    .Protect DrawingObjects:=False, Contents:=True, Scenarios:=False, AllowFormattingCells:=True
End With
End Sub
 
Upvote 0
thanks ...works a treat....

I always try to solve my prob before I ask 'mr excel' , either way I learn.

KR
Trevor3007
 
Upvote 0

Forum statistics

Threads
1,214,932
Messages
6,122,323
Members
449,077
Latest member
jmsotelo

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