I have made a spreadsheet in Google Sheets containing Youtube URLs.
I also made the following script:
function shuffleSheet() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var sheet = ss.getSheets()[0];
var range = sheet.getRange("A4:D17");
// Randomizes the range
range.randomize();
}
I add a trigger to the sheet that when I open the file the script runs. So the rows get shuffled each time I open the sheet.
This is working on a Desktop PC but it isn't working on my Android phone when I open the sheet with the Google Sheets app.
Am I doing something wrong? Is there soms way I could get this working?