1

I want to show some messages (alert or information) while a backend process is running (5-10 minutes) at Google sheets. The following code is working perfectly fine in Desktop Google Sheets. But it does not work at all in Google Sheets Mobile App. Is there any way (e.g. logger.log) that such messages will work in both Desktop and Google Sheets Mobile app seamlessly?

   if (e.range.getA1Notation() === 'C6' && e.range.getValue() === "Error Correction") {    
      var ui = SpreadsheetApp.getUi();
      var button = ui.alert("Confirm Your Subject Details!!", ui.ButtonSet.OK_CANCEL);
      if (button == ui.Button.OK){
        //ui.alert("Error correction process is running. Please wait!!");
        errorCorrect(); 
      }
   }
Tamjid Taha
  • 171
  • 9

0 Answers0