Skip to main content
Learn
Making faster For...Next loops
Integers use less memory than the Variant data type and are slightly faster to update. However, this difference is only noticeable if […]
Learn
Using For...Next statements
Use For...Next statements to repeat a block of statements a specific number of times. For loops use a counter variable whose value […]
Learn
Excel Macro: Delete Blank or Empty Columns
Blank columns can often cause problems with formulas. this macro can help automate delete blank columns. Get this VBA code now!
Learn
Excel Macro: Delete Blank or Empty Rows
Blank rows can often cause problems with formulas. This macro can help automate delete blank or empty rows. Get this VBA code now!
Learn
Excel Macro: Insert Blank Rows Between Existing Rows
If you need to insert blank rows between each of the existing rows into your Worksheet with VBA, this macro will help you to do this.
Learn
Excel Macro: Create a Table of Contents of Sheets
This Excel macro not only creates a table of contents at the beginning of the workbook, but it also adds hyperlinks. Get this VBA code now!
Learn
Excel Macro: Group Worksheets by Color
If you assign colors to your Worksheet tabs, you may want to sort or group Worksheets based on their tab colors, this macro can help you.
Learn
Excel Macro: Sort Worksheets by Name
If you want to sort multiple worksheets by name, it seems very boring to do it manually. In this situations, you can use this simple macro.
Docs
For...Next statement
Repeats a group of statements a specified number of times. Syntax For counter = start To end [ Step step ] [ […]