Need a column to auto populate the month NAME when the date column next to it is selected.
What I need: When final complete DATE is entered, the final completion MONTH column lists the month associated.
For this example: 11/15/24 was entered in the Final completion DATE column. I need the final completion MONTH column to auto reflect NOVEMBER.
Answers
-
If you are looking for the numeric month… short and sweet:
=IF(ISDATE([Final Completion Date]@row), MONTH([Final Completion Date]@row), "")
If you want the month to appear as text, not quite so short:
=IF(ISDATE([Final Completion Date]@row), IF(MONTH([Final Completion Date]@row) = 1, "January", IF(MONTH([Final Completion Date]@row) = 2, "February", IF(MONTH([Final Completion Date]@row) = 3, "March", IF(MONTH([Final Completion Date]@row) = 4, "April", IF(MONTH([Final Completion Date]@row) = 5, "May", IF(MONTH([Final Completion Date]@row) = 6, "June", IF(MONTH([Final Completion Date]@row) = 7, "July", IF(MONTH([Final Completion Date]@row) = 8, "August", IF(MONTH([Final Completion Date]@row) = 9, "September", IF(MONTH([Final Completion Date]@row) = 10, "October", IF(MONTH([Final Completion Date]@row) = 11, "November", "December"))))))))))))
-
Hi @sjohanson
Here you go:
=IF(MONTH([Final Completion Date]@row) = 1, "January", IF(MONTH([Final Completion Date]@row) = 2, "February", IF(MONTH([Final Completion Date]@row) = 3, "March", IF(MONTH([Final Completion Date]@row) = 4, "April", IF(MONTH([Final Completion Date]@row) = 5, "May", IF(MONTH([Final Completion Date]@row) = 6, "June", IF(MONTH([Final Completion Date]@row) = 7, "July", IF(MONTH([Final Completion Date]@row) = 8, "August", IF(MONTH([Final Completion Date]@row) = 9, "September", IF(MONTH([Final Completion Date]@row) = 10, "October", IF(MONTH([Final Completion Date]@row) = 11, "November", "December")))))))))))
I can't take the credit, Smartsheet's AI formula generator did this based on this request:
@Alison Clancy bonus points for #AI use?
-
Thank you!!!!
-
haha you get 1000 bonus Alison points! Big Champion behavior. 🎉
Meet the Overachievers + Community Champions 🤩
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.1K Get Help
- 414 Global Discussions
- 222 Industry Talk
- 460 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 461 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!