string=colRow2Ref(col:integer, row:integer)
The function transforms Col and Row format defined cell to Ref format. Returned value is in string format. For example A1, C8, D22 etc.

Parameters
Col and row are coordinates of the cell we want to transform to Ref format. Col is a column coordinate and row is a row coordinate. The values range from firstCol and lastCol, or firstRow and lastRow.

Example - Director
global xls
put xls.colRow2Ref(2,7)

Example - Authorware
CallObject(xls; "colRow2Ref" ; 2; 7)