We are freezing cells in the range A51 to A54, and we have selected cell A100.
Problem :-
We need to move cell A100 below A54 in excel + officejs
(A100 select in bottom in sheet)](https://i.sstatic.net/pzI0StNf.png)
Expected Result : –
(A100 need select after A54 in sheet)](https://i.sstatic.net/4a7yimFL.png)
We need to move cell A100 below A54 in excel + officejs
await Excel.run(async (context) => {
const sheet = context.workbook.worksheets.getActiveWorksheet();
sheet.freezePanes.freezeAt("A51:A54");
await context.sync();
await context.sync();
sheet.getRange("A100:A100").select();
await context.sync();
});