VBA Code to Add A-Z Alphabets in a Active Cell in Excel

This VBA code will help you to enter A to Z Alphabets in Active Cell. For Example Click on “A1” cell and run this VBA code, then A to Z will be filled from Cell “A1” to “A26”.

VBA Code:

Sub addsAlphabets1()
    Dim i As Integer
    For i = 65 To 90
    ActiveCell.Value = Chr(i)
    ActiveCell.Offset(1, 0).Select
Next i
End Sub

Check All VBA Codes

Join Our Telegram Group techguruplus telegram group Join Our WhatsApp Group techguruplus whatsapp group
Nazim Khan - Author Image

Nazim Khan (Author) 📞 +91 9536250020
[MBA in Finance]

Nazim Khan is an expert in Microsoft Excel. He teaches people how to use it better. He has been doing this for more than ten years. He is running this website (TechGuruPlus.com) and a YouTube channel called "Business Excel" since 2016. He shares useful tips from his own experiences to help others improve their Excel skills and careers.

Leave a Comment