The VP Combine ranges command returns a new range object that incorporates two or more existing range objects. All of the ranges must be from the same 4D View Pro area.
In rangeObj, pass the first range object.
In otherRangeObj, pass another range object(s) to combine with rangeObj.
Note: The command incorporates rangeObj and otherRangeObj objects by reference.
You want to combine cell, column, and row range objects in a new, distinct range object:
$cell:=VP Cell("ViewProArea";2;4)
$column:=VP Column("ViewProArea";3)
$row:=VP Row("ViewProArea";9)
$combine:=VP Combine ranges($cell;$column;$row)