Convert date from one cell to text in another cell
Hello,
I am trying to convert a date in one cell to text in another cell, but have not been able to figure out an eloquent/simple formula to do so.
The use case is: I have a planned start date column where the cells are populated with dates. I want to have that date translated into a Month label (drop down) in another column within the same row. So for example, my Planned Start Date is 1/15/2021, I want the "Month" column to show January in the cell on the same row.
Thanks!
Best Answer
-
The most straighforward soultion would be a nested IF statement.
=IF(MONTH([Start Date]@row) = 1, "January", IF(MONTH([Start Date]@row) = 2, "February", IF(MONTH([Start Date]@row) = 3, "March", ..................................., "December"))))))))))
Answers
-
The most straighforward soultion would be a nested IF statement.
=IF(MONTH([Start Date]@row) = 1, "January", IF(MONTH([Start Date]@row) = 2, "February", IF(MONTH([Start Date]@row) = 3, "March", ..................................., "December"))))))))))
-
Worked perfectly, thank you!😀
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 146 Just for fun
- 63 Community Job Board
- 465 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!