Keyword Table

This table lists each keyword and provides a description of the keyword. Click on the function name to jump to a discussion of that function.

Keyword

Description

And

Include AND to perform a logical conjunction on two Boolean expressions.

BeginSub

Include a BeginSub statement at the beginning of each subroutine in a DAL subroutine library.

Break

Use a Break statement to exit a While..Wend statement block.

Continue

Use a Continue statement to restart a While...Wend statement loop.

Else

Include an Else statement if you want to pass control to the statement that follows this keyword if the logical expression is false.

ElseIf

If the first logical expression is false, the first ELSEIF logical expression is evaluated.

End

Include an End statement to end an IF, ELSEIF, or ELSE statement

EndSub

Include a EndSub statement to end each subroutine in a DAL subroutine library.

Goto

Include a Goto statement to move to a specific location within a calculation.

If...End

Use IF statements to execute commands based on the occurrence of a given condition.

Or

Include OR to perform a logical disjunction on two Boolean expressions.

Return

Use a Return statement to tell the calculation to return with or without a value.

While...Wend

Use While...Wend statements to execute a series of statements, as long as a given condition is true.