Easy Dropdown Selection Email Notifications in Google Sheets

Поделиться
HTML-код
  • Опубликовано: 28 окт 2024

Комментарии • 12

  • @RyaanTransportation
    @RyaanTransportation 6 дней назад

    It's Tooooooooooooo awesome, it solves my problem now.

    • @SheetsNinja
      @SheetsNinja  6 дней назад

      Awesome, so glad this video was helpful for you!

  • @SolomonTetteh-ot7ww
    @SolomonTetteh-ot7ww 2 месяца назад

    This video just saved me alot of stress.. Thank you.. I have liked and subscribed😊

  • @stanjontra9405
    @stanjontra9405 2 месяца назад

    On my sheet, we have hidden columns. Would you count the hidden columns in the array?
    Very cool video, this is exactly what we were looking for.

    • @SheetsNinja
      @SheetsNinja  2 месяца назад +1

      Yes, you would need to count the hidden columns as well.

  • @Carlie-d2w
    @Carlie-d2w 3 месяца назад

    This is great! What do I need to remove if I don't want any data from the columns pulling into the email, just the notification email sent?

    • @SheetsNinja
      @SheetsNinja  3 месяца назад +1

      You can just type what you want in the htmlBody part of the sendEmail section, and don't need to include any of the template literals: ${}

  • @stephenphillips7445
    @stephenphillips7445 Месяц назад

    Now that Google Business has conditional notifications, can this be implemented easier without the script, but still using specifics from the dropdown menus?

    • @SheetsNinja
      @SheetsNinja  Месяц назад

      So the conditional notifications that Google implemented for the business accounts can make simple notifications easier, but it doesn't give you any customization on what gets included in the notification or how it's formatted. You can see a quick walkthrough of how to set up Google's notifications here: support.google.com/docs/thread/278360807/google-sheets-new-feature-conditional-notifications?hl=en

  • @Data_Sheet
    @Data_Sheet 11 дней назад

    checkMySheet(e) - what "e" mean? tried to apply to my sheet but there's an error in e.range?

    • @SheetsNinja
      @SheetsNinja  10 дней назад

      E is the event object so when you use the native onEdit(e) function or something else like checkMySheet(e) and add a trigger, the event object is what contains some information about the edit, for example, the cell that got updated, the sheet, etc. When you authorize the script, it's normal to have that error because the script is expecting 'e' to contain some things but when you run it in the script editor, it won't.