Watch the video:
Timestamps:
0:00 - Explanation
0:38 - Google Sheets jump to bottom hotkey
1:07 - Auto jump to bottom in Google Sheets
1:46 - Creating a Script in Google Sheets
Find yourself scrolling to the bottom of Google Sheets files often, but want to make it quicker? This video shows you all you need to know about speeding up the process. From simple hotkey to something that scrolls to the bottom for you automatically.
function onOpen(){
let ss = SpreadsheetApp.getActiveSpreadsheet();
let sheet = ss.getSheetByName(ss.getSheets()[0].getName());
sheet.setActiveRange(sheet.getRange(sheet.getLastRow(),1));
}