input box

Trevor3007

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

The code below generates random passwords, & then goes to a2 & a message box appears stating 'enter site site name:-

VBA Code:
Sub autocode()
    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("c2:c2663")
        PW = vbNullString
        For i = 1 To 8
            Do
                DoEvents
                PW1 = Chr(Int((96 - 123 + 1) * Rnd + 123)) ' 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
        
 
       Application.Goto Reference:="R2C1"
    
    MsgBox "Enter Site Name"
    
    
End Sub

although it works to a point, there is the issue of 'speed it takes to complete & id rather have a input box to put the 'enter 'site name' rather then the 'message box'

can anyone help & sort for me please?

many thanks in advance & hope you have a great rest of your day to.
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Hi,
reducing the number of passwords you are creating should speed things up

See if this update to your code does what you want

Rich (BB code):
Sub autocode()
    Static IsRandomized     As Boolean
    Dim GetEntry            As Variant, arr() As Variant
    Dim cell                As Range, rng As Range
    Dim PW1                 As String, PW As String
    Dim i                   As Integer, j As Integer
   
    Const NumberPasswords As Integer = 2663
   
   
   
    If Not IsRandomized Then Randomize: IsRandomized = True
    Set rng = Range("c2:c" & NumberPasswords)
    ReDim arr(1 To rng.Cells.Count)
   
    Application.ScreenUpdating = False
   
    For j = 1 To UBound(arr)
        PW = vbNullString
        For i = 1 To 8
            Do
                DoEvents
                PW1 = Chr(Int((96 - 123 + 1) * Rnd + 123)) ' 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))
        arr(j) = PW
    Next j
   
    'write arr to range
    Cells(2, 3).Resize(UBound(arr)).Value = Application.Transpose(arr)
       
 
    Application.Goto Reference:="R2C1"
  
   Application.ScreenUpdating = True
   Do
   GetEntry = InputBox("Enter Site Name", "Site Name")
    'cancel pressed
    If StrPtr(GetEntry) = 0 Then Exit Sub
   Loop Until Len(GetEntry) > 0
  
   ActiveCell.Value = GetEntry
   
End Sub

Rather than write each password a cell at a time, I have added an array which then places all passwords to the range in one go which may be a little faster.

Change value shown in BOLD to create number passwords as required


Dave
 
Upvote 0
Solution
ub autocode() Static IsRandomized As Boolean Dim GetEntry As Variant, arr() As Variant Dim cell As Range, rng As Range Dim PW1 As String, PW As String Dim i As Integer, j As Integer Const NumberPasswords As Integer = 2663 If Not IsRandomized Then Randomize: IsRandomized = True Set rng = Range("c2:c" & NumberPasswords) ReDim arr(1 To rng.Cells.Count) Application.ScreenUpdating = False For j = 1 To UBound(arr) PW = vbNullString For i = 1 To 8 Do DoEvents PW1 = Chr(Int((96 - 123 + 1) * Rnd + 123)) ' 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)) arr(j) = PW Next j 'write arr to range Cells(2, 3).Resize(UBound(arr)).Value = Application.Transpose(arr) Application.Goto Reference:="R2C1" Application.ScreenUpdating = True Do GetEntry = InputBox("Enter Site Name", "Site Name") 'cancel pressed If StrPtr(GetEntry) = 0 Then Exit Sub Loop Until Len(GetEntry) > 0 ActiveCell.Value = GetEntry End Sub


wahoo... thanks. Works a treat (y)
have a great rest of your day.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,693
Members
448,979
Latest member
DET4492

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