Month to Start automation

I have a programmer schedule with a column titled "Month to Start" with each month as 3 letters, Jan, Feb, Mar, Apr, etc. I am wondering if I need to enter new automation for each month to trigger an email to any programmer who has a task in that month (so as not to send an email that clogs up inboxes with all months). Or is it possible to set up one automation that can specify without setting one up for each month?
Best Answer
-
@Paul.Woodward It looks like your solution incorporates things from Excel that do not work in Smartsheet. You may want to double check your source(s).
@TEATom This will be the formula that will check a box for any assignments the have a [Month To Start] in the current month:
=IF((FIND([Month To Start]@row, "JanFebMarAprMayJunJulAugSepOctNovDec") + 2) / 3 = MONTH(TODAY()), 1)
You would then set up your alert to be triggered on a recurring basis (select a date based trigger and then select "Custom" instead of "Run Once" and have a condition of the box being checked.
Answers
-
In Smartsheet, you can set up a single automation to handle this scenario without needing to create a separate automation for each month. You can achieve this by utilizing a dynamic condition in your automation setup that checks the "Month to Start" column against the current month. This way, the automation will only trigger emails for the relevant month, keeping your communications efficient and targeted.
Steps to Set Up Dynamic Monthly Email Automation:
- Define the Current Month in a Formula:
- First, add a helper column (let's call it "Current Month") in your sheet.
- excelCopy=TEXT(TODAY(), "mmm")
- This formula converts today's date to a three-letter month format (e.g., "Jan", "Feb", etc.).
- Create the Automation Rule:
- Go to Automations > Create a Workflow in your Smartsheet.
- Trigger: Choose a trigger that makes sense for your needs, such as "When rows are added or changed."
- plaintextCopy[Month to Start] = [Current Month]
- This condition ensures that the automation only triggers for programmers whose tasks are set to start in the current month.
- Set Up the Email Action:
- Define the action to send an email.
- Configure the email to include the necessary information about the task and ensure it is sent to the appropriate programmer (possibly using a contact column in your sheet).
- Test Your Automation:
- After setting up your automation, test it to ensure that it functions as intended. You might want to set a few test entries with different months to see if the emails are only sent for the current month.
- Adjust as Necessary:
- Depending on your specific needs or findings during testing, you may need to adjust the formula or automation settings.
- Define the Current Month in a Formula:
-
Thank you. In the
- excelCopy=TEXT(TODAY(), "mmm")
I should only need the text after the = sign, correct? Doesnt seem to be working for me. Any thoughts as to why?
-
In the
- excelCopy=TEXT(TODAY(), "mmm")
I should only need the text after the = sign, correct? Doesnt seem to be working for me. Any thoughts as to why?
-
I found that this works:
=MID("JanFebMarAprMayJunJulAugSepOctNovDec", (MONTH(DATE(2025, 3, 31)) * 3) - 2, 3)
-
@Paul.Woodward It looks like your solution incorporates things from Excel that do not work in Smartsheet. You may want to double check your source(s).
@TEATom This will be the formula that will check a box for any assignments the have a [Month To Start] in the current month:
=IF((FIND([Month To Start]@row, "JanFebMarAprMayJunJulAugSepOctNovDec") + 2) / 3 = MONTH(TODAY()), 1)
You would then set up your alert to be triggered on a recurring basis (select a date based trigger and then select "Custom" instead of "Run Once" and have a condition of the box being checked.
-
Thank you so much!
-
SO I do not need a Current Month column? I could just use this formula in the new column and the automation would check that? SOrry not sure I am following.
=IF((FIND([Month To Start]@row, "JanFebMarAprMayJunJulAugSepOctNovDec") + 2) / 3 = MONTH(TODAY()), 1)
-
That is correct. The formula would go in a checkbox column and will check the box on any row that is the current month. You would then build out your automation to include a condition of this box being checked.
-
And I still need to specify the row and date in the formula?
=IF((FIND([Month To Start]@row, "JanFebMarAprMayJunJulAugSepOctNovDec") + 2) / 3 = MONTH(TODAY()), 1)
-
Becuase I keep getting error with this:
=IF((FIND([Month to Start]@row, "JanFebMarAprMayJunJulAugSepOctNovDec") + 2) / 3 = MONTH(TODAY(2025, 4, 1)), 1)
-
No. You should be able to use it exactly how I have it. The TODAY() function will automatically pull today's date.
-
I see the issue. ALl of the months in Month to Start are in capital letters. I may need to change them because when I changed to formula to all caps it no longer sees the month names JANFEBMARAPRMAYJUNJULAUGSEPOCTNOVDEC
-
Oh no, it wont go back and change them I get an error:
-
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.4K Get Help
- 465 Global Discussions
- 156 Industry Talk
- 510 Announcements
- 5.5K Ideas & Feature Requests
- 86 Brandfolder
- 156 Just for fun
- 81 Community Job Board
- 520 Show & Tell
- 35 Member Spotlight
- 3 SmartStories
- 307 Events
- 35 Webinars
- 7.3K Forum Archives