Тёмный

Send Automatic Birthday Wishes | Google Sheets Tutorial 

Ajay Anand
Подписаться 154 тыс.
Просмотров 1,4 тыс.
50% 1

This video is about a Google Sheet Template that will Automatically send Birthday Wishes to those people listed in a worksheet.
🍐 Top 25 Microsoft Word Tips and Tricks
• Top 25 Microsoft Word ...
🍓 7 Most Important Tools in Excel
• Most important Tools i...
🍐Join my online course on Excel Tables
www.udemy.com/...
🍓Download my free eBook on Excel Macros
eepurl.com/gpT0RD
🍇Check these Books on Excel
xlncad.com/exc...
🍉Read my articles on Excel
xlncad.com/
🍏Playlist for Shorts on Excel
• Short videos on Excel ...
Download the Apps Script code for sending Birthday Wishes
drive.google.c...
#googlesheets #appscript #googlesheetstutorial

Опубликовано:

 

11 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 6   
@AjayAnandXLnCAD
@AjayAnandXLnCAD 2 месяца назад
Apps Script Code for sending Birthday Wishes function sendBirthdayWishes() { var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet(); var dataRange = sheet.getDataRange(); var data = dataRange.getValues(); var today = new Date(); var todayDayMonth = today.getDate() + "-" + (today.getMonth() + 1); for (var i = 1; i < data.length; i++) { if (data[i][0] === '') { continue; // Skip empty rows } var name = data[i][1]; // Adjust column index based on your sheet var dobCell = data[i][2]; // Date of Birth column var dob; if (typeof dobCell === 'object' && dobCell instanceof Date) { dob = dobCell.getDate() + "-" + (dobCell.getMonth() + 1); // Format DD-MM } else if (typeof dobCell === 'string' && dobCell !== '') { var dobParts = dobCell.split("/"); dob = dobParts[0] + "-" + dobParts[1]; // Format DD-MM } else { continue; // Skip rows with invalid or empty Date of Birth } if (dob === todayDayMonth) { var email = data[i][3]; // Email column var subject = "Happy Birthday " + name + "!"; var message = "Dear " + name + ", Wishing you a very Happy Birthday! Have a fantastic day! Best Regards, Ajay Anand"; MailApp.sendEmail(email, subject, message); } } }
@sallyho146
@sallyho146 2 месяца назад
How do we do that in outlook
@mmgaffoor
@mmgaffoor 2 месяца назад
Great, Thanks
@mkrissna
@mkrissna Месяц назад
Thanks Bro, is that possible to send birthday wishes similarly through WhatsApp
@BlackMarkerSir
@BlackMarkerSir 2 месяца назад
Hi sir I am maths teacher I had created the marksheet of students only maths subject where I had taken multiple test but everytime whenever I want to make that I have to search the students name first then in next column I write there marks So my question is'' is there an any formula where I write there name and there marks so it's automatically add in column?"
@tabrezkhan1202
@tabrezkhan1202 2 месяца назад
USE V LOOKUP FORMULA
Далее
Basic Excel formulas for Beginners
5:27
Просмотров 1,2 тыс.
Introducing iPhone 16 | Apple
02:00
Просмотров 4,6 млн
ДОМИК ДЛЯ БЕРЕМЕННОЙ БЕЛКИ#cat
00:45
Insert Page numbers in Excel Sheet
3:19
Просмотров 1,1 тыс.
Don't Use ChatGPT Until You Watch This Video
13:40
Просмотров 1,6 млн
Make Your Google Sheets Look PRO in Under 10 Minutes!
9:25