Google sheets : aide modification script
Résolu
mafia97231
Messages postés
25
Date d'inscription
Statut
Membre
Dernière intervention
-
mafia97231 Messages postés 25 Date d'inscription Statut Membre Dernière intervention - 12 août 2021 à 20:48
mafia97231 Messages postés 25 Date d'inscription Statut Membre Dernière intervention - 12 août 2021 à 20:48
A voir également:
- Google sheets : aide modification script
- Google maps satellite - Guide
- Dns google - Guide
- Google maps - Guide
- Google - Guide
- Créer un compte google - Guide
1 réponse
J'ai trouvé, merci :)
code modifié :
function refreshPlage(){
var ss = SpreadsheetApp.getActiveSheet().getRange(2, 3, 12, 54);
var temp = Utilities.getUuid();
ss.createTextFinder("=")
.matchFormulaText(true)
.replaceAllWith(temp);
ss.createTextFinder(temp)
.matchFormulaText(true)
.replaceAllWith("=");
}
code modifié :
function refreshPlage(){
var ss = SpreadsheetApp.getActiveSheet().getRange(2, 3, 12, 54);
var temp = Utilities.getUuid();
ss.createTextFinder("=")
.matchFormulaText(true)
.replaceAllWith(temp);
ss.createTextFinder(temp)
.matchFormulaText(true)
.replaceAllWith("=");
}