Identifying Multiple Segments with Ranges

The syntax for a range in a segment range is:

AXIS[Segment Start : Segment End (Range Start : Range End)]

where Segment Start and Segment End refer to multiple segments.

Example 1:

Point to expanded rows 5, 6, and 7 in row segments 1, 2, 3, and 4:

row[1:4(5:7)] 

Example 2:

Point to expanded rows 5, 7, and 9 in row segments 1, 2, 3, and 4:

row[1:4(5,7,9)]

If the segment argument refers to segments that do not exist in the axis, the segments are ignored. This includes suppressed rows or columns.

Example 3:

Point to expanded rows 4, 6, 7,8, 9, and 10 in row segment 1 and 4, 5, and 6 in row segment 3 and all expanded rows in row segment 7:

row[1(4, 6:10); 3(4:6); 7]