Top 10 Useful Excel Macro [VBA] Codes Examples – [For Beginners]

.

Microsoft Excel is a powerful tool for data analysis and reporting. However, you can supercharge your Excel experience by using VBA (Visual Basic for Applications) to automate tasks and extend Excel’s capabilities. In this blog post, we’ll explore the top 10 VBA code snippets for Excel that can boost your productivity.

If you do not know – how to use these snippets in your excel sheet, refer to my beginner’s tutorial – How to create a simple excel macro in Excel

1. Creating a Simple Message Box

A message box is a common way to display information or collect user input. This snippet shows you how to create a basic message box.

Sub ShowMessageBox()
    MsgBox "Hello, World!", vbInformation, "Cool Box Title"
End Sub

Here, we use the MsgBox function to display a message with a title and icon. You can customize the message and appearance to your needs.

2. Looping Through Worksheets and Cells

Excel workbooks often contain multiple worksheets with various data. This code snippet helps you loop through all worksheets and cells to perform operations.

Sub LoopThroughWorksheetsAndCells()
    Dim ws As Worksheet
    For Each ws In ThisWorkbook.Worksheets
        Dim cell As Range
        For Each cell In ws.UsedRange
            ' Your code here
        Next cell
    Next ws
End Sub

This code snippet allows you to access and process data in each cell of every worksheet in your workbook.

3. Automatically Resizing Columns and Rows

Fitting your content neatly in Excel is essential. This code snippet auto-adjusts columns and rows to fit your data.

Sub AutoResizeColumnsAndRows()
    Dim ws As Worksheet
    Set ws = ThisWorkbook.Worksheets("Sheet1") ' Change to your sheet name
    ws.Cells.EntireColumn.AutoFit
    ws.Cells.EntireRow.AutoFit
End Sub

Running this code will make sure your data is easily readable without manual adjustments.

4. Opening a File Dialog and Importing Data

Sometimes, you need to import external data into Excel. This code lets you open a file dialog for the user to select a file to import.

Sub ImportDataFromFileDialog()
    Dim FileDialog As FileDialog
    Set FileDialog = Application.FileDialog(msoFileDialogFilePicker)
    If FileDialog.Show = -1 Then
        Workbooks.Open FileDialog.SelectedItems(1)
    End If
End Sub

This code makes it easy to bring data from external sources into your Excel workbook.

5. Creating a UserForm for Data Input

UserForms are a fantastic way to collect structured data. This snippet opens a UserForm you’ve created in the VBA editor.

Sub ShowDataEntryForm()
    UserForm1.Show
End Sub

In the VBA editor, you can design the UserForm with various input controls like text boxes, combo boxes, and buttons. This form makes data entry more user-friendly.

6. Copying and Pasting Data

Copying and pasting data in Excel is a common operation. This code automates the process.

Sub CopyAndPasteData()
    Sheets("Sheet1").Range("A1:A10").Copy
    Sheets("Sheet2").Range("B1").PasteSpecial Paste:=xlPasteValues
End Sub

This code snippet shows how to copy data from one location and paste it to another with options like xlPasteValues to paste just the values.

7. Conditional Formatting

Conditional formatting is a powerful tool to highlight specific data based on certain conditions. VBA can help you apply conditional formatting rules programmatically.

Sub ApplyConditionalFormatting()
    Dim rng As Range
    Set rng = Sheets("Sheet1").Range("B2:B10")
    With rng.FormatConditions.Add(xlCellValue, xlBetween, "10", "20")
        .Interior.Color = RGB(255, 0, 0) ' Red
    End With
End Sub

In this example, we apply conditional formatting to cells within a specified range that fall between 10 and 20.

8. Creating PivotTables

PivotTables are excellent for summarizing and analyzing data. This code creates a PivotTable from a data source.

Sub CreatePivotTable()
    Dim ws As Worksheet
    Set ws = ThisWorkbook.Worksheets("Sheet1")
    ws.PivotTableWizard
End Sub

You can expand this code to define the data source and PivotTable layout.

9. Exporting Data to PDF

Sharing your Excel data in PDF format is common. This code snippet demonstrates how to export a specific worksheet as a PDF.

Sub ExportToPDF()
    Sheets("Sheet1").ExportAsFixedFormat Type:=xlTypePDF, Filename:="C:\ExportedFile.pdf"
End Sub

You can specify the file path and customize the PDF options.

10. Automatically Refreshing Data Connections

When working with external data sources, you can ensure that the data is up-to-date by automatically refreshing data connections. You can simply create a refresh button in your excel sheet and link the following VBA code snippet behind it. How to create a button and associate a macro behind it, refer to my previous tutorial – How to add different controls in excel such as Button, Checkbox, radio button, etc.

Sub RefreshDataConnections()
    ThisWorkbook.Connections("ConnectionName").Refresh
End Sub

Replace “ConnectionName” with the name of your data connection.

In this blog post, we’ve covered a range of VBA code snippets to enhance your Excel experience. These snippets help you automate common tasks, from data manipulation to creating user-friendly forms. Remember to save your Excel file as a macro-enabled workbook (.xlsm) to use these VBA code snippets effectively. With VBA, you can take your Excel skills to the next level and become more efficient in handling data and automating your work.

If you have any questions or need further clarification on any of these snippets, feel free to ask in the comments section.

Buy a coffee for the author

Adsense

Download FREE Tools and Templates

There are many cool and useful excel tools and templates available to download for free. For most of the tools, you get the entire VBA code base too which you can look into it, play around it, and customize according to your need.

Dynamic Arrays and Spill Functions in Excel: A Beginner’s Guide
Dynamic Arrays and Spill Functions in Excel: A Beginner’s Guide

In today's tutorial, we'll be diving into the exciting world of dynamic arrays and spill functions in Office 365 Excel. These features have revolutionized the way we work with data, providing a more flexible and efficient way to handle arrays. I am going to explain...

How to Declare a Public Variable in VBA
How to Declare a Public Variable in VBA

While programming in VBA sometimes you need to declare a Public Variable that can store the value throughout the program. Use of Public Variable: Let's say you have 4 different Functions in your VBA Code or Module and you have a variable that may or may not be...

How to Copy content from Word using VBA

As many of us want to deal with Microsoft Word Document from Excel Macro/VBA. I am going to write few articles about Word from Excel Macro. This is the first article which opens a Word Document and read the whole content of that Word Document and put it in the Active...

What is Excel Formula?

Excel Formula is one of the best feature in Microsoft Excel, which makes Excel a very very rich application. There are so many useful built-in formulas available in Excel, which makes our work easier in Excel. For all the automated work, Excel Macro is not required. There are so many automated things can be done by using simple formulas in Excel. Formulas are simple text (With a Syntax) which is entered in to the Excel Worksheet Cells. So how computer will recognize whether it is a formula or simple text? Answer is simple.. every formula in Excel starts with Equal Sign (=).

You May Also Like…

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

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

Join and get a FREE! e-Book

Don't miss any articles, tools, tips and tricks, I publish here

You have Successfully Subscribed!

Pin It on Pinterest