Create Formula in Sheet Summary field to pull only Month from another Sheet Summary Date Field
I have a date field for projected go live date for projects in my Sheet Summary.
I would like to add another field with a formula that will display only the Month Name in another field so that when I run the Sheet Summary report I can summarize projects going live by month.
I would appreciate any guidance!! Thank you!
Answers
-
Hi @MariaG
This should do the trick
=IF(MONTH([Projected completion date]#) = 1, "Jan", IF(MONTH([Projected completion date]#) = 2, "Feb", IF(MONTH([Projected completion date]#) = 3, "Mar", IF(MONTH([Projected completion date]#) = 4, "Apr", IF(MONTH([Projected completion date]#) = 5, "May", IF(MONTH([Projected completion date]#) = 6, "Jun", IF(MONTH([Projected completion date]#) = 7, "Jul", IF(MONTH([Projected completion date]#) = 8, "Aug", IF(MONTH([Projected completion date]#) = 9, "Sep", IF(MONTH([Projected completion date]#) = 10, "Oct", IF(MONTH([Projected completion date]#) = 11, "Nov", IF(MONTH([Projected completion date]#) = 12, "Dec", "Error"))))))))))))
You can extend the month names as required.
Hope that helps
Paul McGuinness
Central Operations Manager at Care UKIf you found this comment useful, please let me know by clicking one of the buttons below: Awesome, Insightful, Upvote, or Accepted Answer. Your feedback will assist others looking for the same information and also help me out.
-
This worked perfectly!!! Thank you so much @Paul McGuinness!!!!
Since you proved to be very good at this, may I ask one add on to that formula? If there is no date in the Projected Completion Date field, is there a way to have the Implementation Month field display "Undecided"?
Again, I really really appreciate your help on this!! (And so did my CEO!)
🙏
-
Hi @MariaG
Thats fine, if we add another IF using ISBLANK at the front of the formula we can achieve that.
=IF(ISBLANK([Projected completion date]#), "Undecided", IF(MONTH([Projected completion date]#) = 1, "Jan", IF(MONTH([Projected completion date]#) = 2, "Feb", IF(MONTH([Projected completion date]#) = 3, "Mar", IF(MONTH([Projected completion date]#) = 4, "Apr", IF(MONTH([Projected completion date]#) = 5, "May", IF(MONTH([Projected completion date]#) = 6, "Jun", IF(MONTH([Projected completion date]#) = 7, "Jul", IF(MONTH([Projected completion date]#) = 8, "Aug", IF(MONTH([Projected completion date]#) = 9, "Sep", IF(MONTH([Projected completion date]#) = 10, "Oct", IF(MONTH([Projected completion date]#) = 11, "Nov", IF(MONTH([Projected completion date]#) = 12, "Dec", "Error")))))))))))))
Hope that helps
Paul McGuinness
Central Operations Manager at Care UKIf you found this comment useful, please let me know by clicking one of the buttons below: Awesome, Insightful, Upvote, or Accepted Answer. Your feedback will assist others looking for the same information and also help me out.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.1K Get Help
- 414 Global Discussions
- 221 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!