Currently in the process of converting a few VBA macros to Office Script and stumbled upon an interesting trick:
lastRow_in_t = Worksheets("in_t").Range("A1048576").End(xlUp).Row
How would one begin translating this line of code into Typescript/Office Script?
Feeling a bit lost on where to start, so any hints or guidance would be greatly appreciated.