How do I select random cells in spreadsheet dynamically if I have row number and column number?

https://snippet.webix.com/j8fr0s7d

wants to get focus on that cell.

Hi @pratikshadatir1

You can get the datatable via spreadsheet.$$("cells") and use datatable.select(row, column) for one cell or datatable.addSelectArea({row, column}, {row, column}) for area.

Example: https://snippet.webix.com/qua6htor

If I want to select multiple cells at a time then what should I have to do?

Thank you.

If I want to select multiple cells at a time then what should I have to do?

You can use datatable.addSelectArea() method.