showCell

shifts the focus to the specified cell

void showCell(string ref,boolean silent);
refstringlink to the cell/cell range
silentbooleanfalse by default, toggles whether method should show an error message in case of incorrect ref value

Example

$$("sheet").showCell("T50")

Details

If silent is false, method will show an error message. Otherwise, if silent is true, there will be no error message.

Back to top