| SelectRange / UnselectRange |
This function selects or unselects a range of rows or columns. Selection is often a prelude to another operation such as compare, combine, filter, or others.
Syntax:SelectRange, axis, start, count UnselectRange, axis, start, count Parameters:axis – which axis will be used { Row, Column } start – row, column or page index of first element in the range, or { First, Last } count – number of elements in the range Examples:SelectRange,Row,0,5 Selects 5 rows starting with the first row (index 0). |