Tag Archives: Syntax

Using Select Case Statement in VBA

If you have large number of conditions to verify, Select Case statement provides a way to check these conditions easily and in readable manner. Read More »

Different types of If statement with examples in VBA

Here is a list of If Statement for Visual Basic for Application. Read More »

Application Object and Important Properties in VBA for Excel

Application Object is the highest object in Excel, followed by Workbook, followed by Worksheet and followed by Column, Row and cell. You can select object by going from highest to lowest in Excel. Read More »

Types of Loops in VBA

Loops are used to repeat actions. Read More »