▲ 302 r/LimpBizkit
“Stuck” live in Madrid, July 1st 2026
Fresh off the stage for you guys
u/MasterSh4k3 — 5 days ago
Fresh off the stage for you guys
I'm running the following script to auto-sort my B column:
function sortBColumn() {
SpreadsheetApp.getActiveSpreadsheet().getSheetByName("OFICIAL").sort(2,false)
}function sortBColumn() {
SpreadsheetApp.getActiveSpreadsheet().getSheetByName("OFICIAL").sort(2,false)
}
It's only 9 rows (B1:B9), so I want that data to stay visible no matter how deep down in rows I go.
But if I freeze rows 1 to 9, the script stops working. It doesn't auto-sort anymore.
How can I keep this working while freezing my selected rows?