CRÉER UNE BOITE DE DIALOGUE (INPUTBOX) AVEC LISTE DE CHOIX
Ce script permet d'inclure un menu déroulant dans une boite de dialogue. La liste des choix se trouve dans une zone nommée choix du fichier La valeur est recueillie par la fonction getInputBoxValue Il suffit de lancer cette fonction var choix = SpreadsheetApp . getActiveSpreadsheet (). getRange ( 'choix' ). getValues (). flat () function inputBoxListe () { var page = `<html> <style> body { font-family: Roboto, Arial, sans-serif; } select { display: block; width: 90%; box-sizing: border-box; margin-bottom: 1rem; padding: 0.6rem 0.7rem; background: #f3f3f3; border: none; f...