May 29, 2018 08:43 AM
I’m creating an employee directory and I’d like to have a record (cell) display an emoji or change colors one week before that person’s birthday. Has anyone figured out how to do that?
Feb 06, 2022 11:21 PM
Hey Jeremy - thanks for this amazing formula - but one question: How can i prevent from seeing “ :tada: :birthday: :tada: ” if the birthday lies in the past - i don’t want to get reminders via automations if the birthday is over.
Thanks Wolfgang
Oct 31, 2022 10:21 AM
Hi Jeremy, I’m wondering if you could revisit this to help me out with a current issue I’m trying to figure out? Ideally, my Birthday field would be a Single Line Text field that just has the month/day… could you give me some direction from there? If that doesn’t work, I’ll add 2020 as the birth year for all and make it a Date field. I’m not wanting the same outcome as the above user… I’m just wanting to create a field with a date that will be used to automate an email with notification of an upcoming birthday. I greatly appreciate any help!!
Nov 02, 2022 07:21 AM
You could have your text input field where you enter the month/day:
| Birthday |
------------
11/02
(for the formula below, it’s important that “day” always has 2 digits, so a leading zero for 1-9)
And then have a formula field that converts that into a proper date for you – this formula field could be hidden.
IF(
{Birthday},
DATETIME_PARSE(
{Birthday},
'MM/DD'
)
)
This will always produce the month and day defined in the Birthday
field, combined with the current year. And now you can have your simple text input, but use the formula field for your automation. Is that what you are looking for?
Nov 03, 2022 09:18 AM
Yes! Amazing, thank you for helping out a newbie! One last question as I move on, I also want to automate an email for an anniversary situation, but we do have the year for that one, so it’s a date field. Would you create the formula that I would use to convert that field to be used in the automation? I appreciate your help so much!
Nov 03, 2022 09:20 AM
The date field is named HTM Anniversary
Nov 03, 2022 11:34 AM
IF(
{HTM Anniversary},
DATETIME_PARSE(
MONTH({HTM Anniversary}) &
'/' & DAY({HTM Anniversary}),
'MM/DD'
)
)
Nov 07, 2022 10:39 AM
Thank you so much! This saved me so much time and head scratching. After I asked, I tried to figure it out myself for about a half hour and barely got anywhere. I have a lot to learn, but I think we have what we need for now. I truly appreciate your help on this!