Looping through code

By using conditional statements and looping statements (also called control structures), you can write Visual Basic code that makes decisions and repeats actions. Another useful control structure, the With statement, lets you run a series of statements without having to requalify an object.

Use conditional statements to make decisions

Conditional statements evaluate whether a condition is True or False, and then specify one or more statements to run, depending on the result. Usually, a condition is an expression that uses a comparison operator to compare one value or variable with another.

Choose a conditional statement to use

Use loops to repeat code

Looping allows you to run a group of statements repeatedly. Some loops repeat statements until a condition is False; others repeat statements until a condition is True. There are also loops that repeat statements a specific number of times or for each object in a collection.

Choose a loop to use

  • Do...Loop: Looping while or until a condition is True
  • For...Next: Using a counter to run statements a specified number of times
  • For Each...Next: Repeating a group of statements for each object in a collection

Run several statements on the same object

In Visual Basic, usually you must specify an object before you can run one of its methods or change one of its properties. Use the With statement to specify an object once for an entire series of statements.

  • With: Running a series of statements on the same object

See also

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.