How to extract Month only from Date column format eg. Apr 6, 2021
Answers
-
Thanks Paul! That worked!
-
Happy to help. 👍️
-
I am using this formula or a versions close to it that I found in another thread, but I am looking to use the Month as a report grouping. Since it's now Text, it groups in alphabetical order.
What would be a recommendation for keeping month names but being able to have the grouping show in calendar order?
-
Hi @Jags0829
I would suggest adding the month number in front of the Month Name if you need to group them in a Report:
=IF(MONTH([Date Column]@row) = 1, "01 January"... and so on.
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
-
Hello i'am still getting error after replacing the semi colan with comma.. can someone please help.
=IF(MONTH ([Last day of employment (HR)]@row) = 1, "January", IF(MONTH([Last day of employment (HR)]@row) = 2, "February", IF([Last day of employment (HR)]@row) = 3, "March", IF(MONTH([Last day of employment (HR)]@row) = 4, "April", IF(MONTH([Last day of employment (HR)]@row) = 5, "May", IF(MONTH([Last day of employment (HR)]@row) = 6,"June", IF(MONTH([Last day of employment (HR)]@row) = 7; "July", IF(MONTH([Last day of employment (HR)]@row) = 8; "August", IF(MONTH([Last day of employment (HR)]@row) = 9, "September", IF(MONTH([Last day of employment (HR)]@row) = 10, "October", IF(MONTH([Last day of employment (HR)]@row) = 11, "November", IF(MONTH([Last day of employment (HR)]@row) = 12, "December"))))))))))))
-
Hi @Shwetaic
I hope you're well and safe!
Try something like this.
=
IF(MONTH([Last day of employment (HR)]@row) = 1, "January",
IF(MONTH([Last day of employment (HR)]@row) = 2, "February",
IF(MONTH([Last day of employment (HR)]@row) = 3, "March",
IF(MONTH([Last day of employment (HR)]@row) = 4, "April",
IF(MONTH([Last day of employment (HR)]@row) = 5, "May",
IF(MONTH([Last day of employment (HR)]@row) = 6,"June",
IF(MONTH([Last day of employment (HR)]@row) = 7, "July",
IF(MONTH([Last day of employment (HR)]@row) = 8, "August",
IF(MONTH([Last day of employment (HR)]@row) = 9, "September",
IF(MONTH([Last day of employment (HR)]@row) = 10, "October",
IF(MONTH([Last day of employment (HR)]@row) = 11, "November",
IF(MONTH([Last day of employment (HR)]@row) = 12, "December")
Did that work/help?
I hope that helps!
Be safe, and have a fantastic week!
Best,
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
✅Did my post(s) help or answer your question or solve your problem? Please support the Community by marking it Insightful/Vote Up, Awesome, or/and as the accepted answer. It will make it easier for others to find a solution or help to answer!
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
@Andrée Starå Thank you the formula worked..
-
Excellent!
Happy to help!
✅Remember! Did my post(s) help or answer your question or solve your problem? Please support the Community by marking it Insightful/Vote Up/Awesome or/and as the accepted answer. It will make it easier for others to find a solution or help to answer!
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
-
I am getting an #INCORRECT ARGUMENT SET error when I changed out the semicolons for commas and I've been staring at it all day looking for the error. Any ideas?
=IF(MONTH([Intake Date]@row) = 1, "January", IF(MONTH([Intake Date]@row) = 2, "February", IF(MONTH([Intake Date]@row) = 3, "March", IF(MONTH([Intake Date]@row) = 4, "April", IF(MONTH([Intake Date]@row) = 5, "May", IF(MONTH([Intake Date]@row) = 6, "June", IF(MONTH([Intake Date]@row) = 7, "July", IF(MONTH([Intake Date]@row) = 8, "August", IF(MONTH([Intake Date]@row = 9, "September", IF(MONTH([Intake Date]@row) = 10, "October", IF(MONTH([Intake Date]@row) = 11, "November", IF(MONTH([Intake Date]@row) = 12, "December")))))))))))))
Maybe a fresh set of eyes can see my mistake...
-
Hey @GMichal
Oh you're SO close! There's just one missed closing parentheses to complete a MONTH function for September:
IF(MONTH([Intake Date]@row = 9, "September", ...
should be
IF(MONTH([Intake Date]@row = 9), "September", ...
Then you'll need to remove one at the end as well. Try this:
=IF(MONTH([Intake Date]@row) = 1, "January", IF(MONTH([Intake Date]@row) = 2, "February", IF(MONTH([Intake Date]@row) = 3, "March", IF(MONTH([Intake Date]@row) = 4, "April", IF(MONTH([Intake Date]@row) = 5, "May", IF(MONTH([Intake Date]@row) = 6, "June", IF(MONTH([Intake Date]@row) = 7, "July", IF(MONTH([Intake Date]@row) = 8, "August", IF(MONTH([Intake Date]@row = 9), "September", IF(MONTH([Intake Date]@row) = 10, "October", IF(MONTH([Intake Date]@row) = 11, "November", IF(MONTH([Intake Date]@row) = 12, "December")))))))))))
Cheers,
Genevieve
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
-
Yep, I sure missed it. Thank you.
-
Hi! I am getting an invalid data type error.. I already checked that the Date Sourcing Completed column is a date type column. What am I doing wrong?
-
Hi @BFulwyler
Is there a date entered in the cell of that row, or is it a blank cell? Blank cells will return an error since the date doesn't exist.
Try adding a statement at the front that checks for blanks, first:
=IF[Date Sourcing Completed]@row = "", "", …
Need more help? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao! 👋 | Global Discussions
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!