RemoveListMember

Top  Previous  Next

×V4.5Ø

S

A

W

WS

ü

ü

Syntax -

       RemoveListMember <List Name> <Row> [<Offset>]

               Where:

                       <List Name> is the user defined name that is assigned to the list.

                       <Row> is a numeric value or a variable that contains a numeric value

                       <Offset> is a numeric value or a variable that contains a numeric value

               

Description:

This command is used to remove a specific row or rows from a list. <List Name> determines which list and <Row> is the row number to be removed. Additional rows can be removed by providing a value for the optional parameter, <Offset>. If the <Offset> value is not provided, then only the single row will be removed.

 

Sample 1:

       This statement will remove row 10 from the Patients list.

RemoveListMember Patients 10

 

Sample 2:

       This statement will remove rows 5 - 7, a total of 3, from the Patients list.

RemoveListMember Patients 5 3