How to extract Month only from Date column format eg. Apr 6, 2021

Janice Phua
Janice Phua โœญโœญโœญโœญ
edited 10/06/23 in Formulas and Functions

Hi All,

I am a novice in Smartsheet Functions and need some help.

How can I extract the month only (i.e. Apr) from Date column format e.g. Apr 6, 2021 in the same Smartsheet?

Thanks.

Janice

Best Answer

  • Andrรฉe Starรฅ
    Andrรฉe Starรฅ Community Champion
    Answer โœ“

    Hi @Janice Phua

    I hope you're well and safe!

    You can use =MONTH(Date@row), and if you want to show the month name, you can use the below formula for that. Otherwise, it will show as a number.

    =IF(MONTH(Date@row) = 1; "January"; IF(MONTH(Date@row) = 2; "February"; IF(MONTH(Date@row) = 3; "March"; IF(MONTH(Date@row) = 4; "April"; IF(MONTH(Date@row) = 5; "May"; IF(MONTH(Date@row) = 6; "June"; IF(MONTH(Date@row) = 7; "July"; IF(MONTH(Date@row) = 8; "August"; IF(MONTH(Date@row) = 9; "September"; IF(MONTH(Date@row) = 10; "October"; IF(MONTH(Date@row) = 11; "November"; IF(MONTH(Date@row) = 12; "December"))))))))))))

    Depending on your country/region, you'll need to exchange the comma to a period and the semi-colon to a comma.

    Did that work/help?

    I hope that helps!

    Be safe and have a fantastic day!

    Best,

    Andrรฉe Starรฅ | Workflow Consultant / CEO @ WORK BOLD

    โœ…Did my post(s) help or answer your question or solve your problem? Please help the Community by marking it as the accepted answer/helpful. 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.

ยซ13

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!