VBA Code to Autofill Formulas in a Range in Excel

VBA Code:

' VBA Code to Autofill Formulas in a Range in Excel
' This code autofills a formula in a specified range

Sub AutofillFormulasInRange()
    Dim rngSource As Range
    Dim rngTarget As Range
    
    ' Set the range with the formula to autofill
    Set rngSource = Range("A1")
    
    ' Set the range where the formula should be autofilled
    Set rngTarget = Range("A1:A10")
    
    ' Autofill the formula in the target range
    rngTarget.Formula = rngSource.Formula
    rngTarget.FillDown
    
    ' Optional: Turn off the Autofill Options button
    Application.AutoCorrect.AutoFillFormulasInLists = False
    
    ' Optional: Clear the clipboard
    Application.CutCopyMode = False
    
    ' Optional: Display a message box when the autofill is complete
    MsgBox "Formulas have been autofilled in the range."
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