Hey! I've seen a bunch of similar threads, and I've tried some of their codes and modified them to meet my own needs, but nothing is working as planned.
Here is what I need to do:
I have a list of employees, after 90 days of being employed, they are "no longer on probation". And are offered health insurance, and a company truck etc.
After 60 days of them being employed, I want it to send me an email saying "(F5) is almost eligible for health insurance, please send them an email of our current package."
After 80 days "(F5) needs to send back the paper work by next week, please confirm they have accepted or denied coverage"
This is what it would look like
Hidden Helper columns --------------------------------------------------------------------------------------------------
It is a table, we usually only have like 20 employees at a time, and while all 20 will be on this list, the only ones we care about will be the new ones. But the table could be sorted at any point.
So I would need the code to go and look at H6 ~ H80 (for future proofing)
If there is a date, check to see if it is on or before today's date
if it is on or before today's date look in column I to see if the email was sent,
if it was already sent, do nothing
if it hasn't been sent, to send the first email, and mark off in the column that the first email was sent.
and then I need it to check j6~j80 for and repeat the same steps.
If anyone is willing to help me complete this task I would really appreciate it!
Here is what I need to do:
I have a list of employees, after 90 days of being employed, they are "no longer on probation". And are offered health insurance, and a company truck etc.
After 60 days of them being employed, I want it to send me an email saying "(F5) is almost eligible for health insurance, please send them an email of our current package."
After 80 days "(F5) needs to send back the paper work by next week, please confirm they have accepted or denied coverage"
This is what it would look like
Hidden Helper columns --------------------------------------------------------------------------------------------------
First Name (A5) | Last Name (B5) | Start date (C5) | Health insurance (D5) | ..... | Name (G5) | insurance first check (H5) | email sent? (I5) | second check (J5) | second sent? (K5) |
=[@[First Name]]&" "&[@[Last Name]] | =IF([@[Start Date]]>0,[@[Start Date]]+60,"") | =IF([@[Start Date]]>0,[@[Start Date]]+80,"") |
It is a table, we usually only have like 20 employees at a time, and while all 20 will be on this list, the only ones we care about will be the new ones. But the table could be sorted at any point.
So I would need the code to go and look at H6 ~ H80 (for future proofing)
If there is a date, check to see if it is on or before today's date
if it is on or before today's date look in column I to see if the email was sent,
if it was already sent, do nothing
if it hasn't been sent, to send the first email, and mark off in the column that the first email was sent.
and then I need it to check j6~j80 for and repeat the same steps.
If anyone is willing to help me complete this task I would really appreciate it!