vdennis
Member
If you want to select via your program the row(s) in an excel sheet, this code is helpful
def var RowToSelect as char no-undo.
def var RowNumber as integer no-undo.
assign
RowToSelect = string(RowNumber)
+ ':'
+ string(RowNumber).
hWorkSheet:rows(RowToSelect:select.
My program searchs the excel sheet by rows (RowNumber) looking for a blank value in a cell (say B42) and if the cell is null in value, will delete the row from the sheet.
def var RowToSelect as char no-undo.
def var RowNumber as integer no-undo.
assign
RowToSelect = string(RowNumber)
+ ':'
+ string(RowNumber).
hWorkSheet:rows(RowToSelect:select.
My program searchs the excel sheet by rows (RowNumber) looking for a blank value in a cell (say B42) and if the cell is null in value, will delete the row from the sheet.