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!π
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 208 Use Cases
- 517 Announcements
- 5.6K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 84 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!