Random String Generation VBA

This blog article shows you how to generate random numbers using VBA. Let’s say the below column A is the real data, and you do not want to share the data, so you want to fake the data.

clip_image002

The code below will generate random string from 30 to 60 characters to replace the data.

Sub RandomString()
     Dim str As String
     Range(“A2”).Select
     While (ActiveCell.Value <> “”)
         str = GenerateRandomCompanyName
         ActiveCell.Value = str
         ActiveCell.Offset(1, 0).Select
         Debug.Print ActiveCell.Address
     Wend
End Sub

Function GenerateRandomCompanyName() As String
     Dim companyName As String
     Dim charSet As String
     Dim i As Integer
     Dim nameLength As Integer
     ‘ Define the character set to use for the company name
     charSet = “ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz “
     ‘ Generate a random length between 30 and 60 characters
     nameLength = Int((60 – 30 + 1) * Rnd + 30)
     ‘ Generate the random company name
     For i = 1 To nameLength
         companyName = companyName & Mid(charSet, Int((Len(charSet) * Rnd) + 1), 1)
     Next i
     ‘ Output the result
     ‘MsgBox “Random Company Name: ” & companyName
     GenerateRandomCompanyName = companyName
End Function

After executing the code, the result is as follows.

Also: Write a VBA program to Generate Test Data using Generative AI

clip_image004 *

Source Code Download: https://github.com/chanmmn/vba/tree/master/2024/RandomStringGeneration?WT.mc_id=DP-MVP-36769

Reference: https://learn.microsoft.com/en-us/office/vba/language/reference/user-interface-help/rnd-function?WT.mc_id=DP-MVP-36769

Unknown's avatar

About chanmingman

Since March 2011 Microsoft Live Spaces migrated to Wordpress (http://www.pcworld.com/article/206455/Microsoft_Live_Spaces_Moves_to_WordPress_An_FAQ.html) till now, I have is over 1 million viewers. This blog is about more than 50% telling you how to resolve error messages, especial for Microsoft products. The blog also has a lot of guidance teaching you how to get stated certain Microsoft technologies. The blog also uses as a help to keep my memory. The blog is never meant to give people consulting services or silver bullet solutions. It is a contribution to the community. Thanks for your support over the years. Ming Man is Microsoft MVP since year 2006. He is a software development manager for a multinational company. With 25 years of experience in the IT field, he has developed system using Clipper, COBOL, VB5, VB6, VB.NET, Java and C #. He has been using Visual Studio (.NET) since the Beta back in year 2000. He and the team have developed many projects using .NET platform such as SCM, and HR based applications. He is familiar with the N-Tier design of business application and is also an expert with database experience in MS SQL, Oracle and AS 400.
This entry was posted in .Net, Cloud, Community, Computers and Internet, Microsoft Office, Office 365, programming and tagged . Bookmark the permalink.

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.