CASE&

Top  Previous  Next

Syntax

CASE& value

Description

An inclusive test condition for a SELECT statement.

Parameters

value - value to compare with the SELECT parameter.

Return value

None

Remarks

Use to group test cases together. One or more CASE& statements can follow an initial CASE

See Also: CASE, SELECT, DEFAULT, ENDSELECT

Example usage

SELECT a
    CASE 1
    CASE& 2
    CASE& 3
        PRINT "Its 1, 2 or 3"
ENDSELECT