Hi,
Row and column numbers are integers, don't specify them as strings. In the current scenario as you specified column as "1" (string), it's trying to identify the column with name as "1". Try the same LOC with integers.
Please let me know if you need any more information.
Row and column numbers are integers, don't specify them as strings. In the current scenario as you specified column as "1" (string), it's trying to identify the column with name as "1". Try the same LOC with integers.
Code:
'Column: The column number or column header label of the column containing the cell you want to select. Column numbers begin with 0.
JavaWindow("Client System").JavaInternalFrame("GM_2").JavaTable("Table[]_2").SelectCell 14,1
'Syntax with column name
JavaWindow("Client System").JavaInternalFrame("GM_2").JavaTable("Table[]_2").SelectCell 14,"FirstColumn"
Thanks,
SUpputuri
SUpputuri