La recherche a retourné 2 résultats

par miajackson1117
23 sept. 2024 09:06
Forum : Sheets
Sujet : Associer 2 tables dans Google Sheet
Réponses : 5
Vues : 4588

Re: Associer 2 tables dans Google Sheet

If you frequently need to do complex tasks like this and feel that formulas aren't flexible enough, the Google Apps Script approach is a more powerful and scalable option. But if you only need to do it once or twice, using VLOOKUP or INDEX/MATCH in Google Sheets is a simple and effective solution ...
par miajackson1117
07 juin 2024 04:02
Forum : Forms
Sujet : Renseigner un évènement Calendar via Google Forms
Réponses : 3
Vues : 17167

Re: Renseigner un évènement Calendar via Google Forms

you can use this script to create love tester function createEventFromForm(form) { // Get information from the form var date = form.getDate(); var time = form.getTime(); var city = form.getCity(); var invitedBy = form.getInvitedBy(); var invitees = form.getInvitees(); var calendarId = form ...