instruction definition

A single command.

Beep
Debug.Print "Hello"
Today = Date

Multiple instructions can be used instead of a single instruction by separating the single instructions with colons (:).

X = 1:Debug.Print X
If X = 1 Then Debug.Print "X=";X:Stop
Beep ' must resume from Stop to get to here