Alert Someone Automation Template
Hi all, I am trying to set up an email automation to email myself the contents of a contacts field for all the rows on my Smartsheet. They way I have it set up now, it is only sending me the first row and that's it. Am I missing something?
Thanks in advance,
Frank
Best Answer
-
Frank B. ✭✭✭✭
Update: I changed the workflow from "Send to specific people" to "Send to Contacts in a cell" and got it to work. I did want to receive a separate email for each row instead of one email for all rows so I am working on that next.
Answers
-
Frank B. ✭✭✭✭
Update: I changed the workflow from "Send to specific people" to "Send to Contacts in a cell" and got it to work. I did want to receive a separate email for each row instead of one email for all rows so I am working on that next.
Categories
You would use the below for Jan 2023 and adjust the month and year numbers accordingly for each of the other months.<\/p>
=IF(AND(MONTH([Start Date]@row)<= 1, YEAR([Start Date]@row)<= 2023, MONTH([End Date]@row)>= 1, YEAR([End Date]@row)>= 2023), [$ per month]@row)<\/p>"},{"commentID":387901,"body":"
Lets try a different approach.<\/p>
=IF(AND(VALUE(YEAR([Start Date]@row) + IF(MONTH(Start Date]@row)< 10, \"0\", \"//www.santa-greenland.com/community/discussion/104786/\") + MONTH([Start Date]@row))<= 202307<\/strong>, VALUE(YEAR([End Date]@row) + IF(MONTH([End Date]@row)< 10, \"0\", \"//www.santa-greenland.com/community/discussion/104786/\") + MONTH([End Date]@row))>= 202307<\/strong>), [$ per month]@row)<\/p> Basically we are creating a yyyymm stamp from the start and end dates and comparing them to the yyyymm stamp for that year\/month combo. The above is for July 2023 (202307).<\/p>"},{"commentID":387906,"body":"
<\/p>