Formula to add leading zero to months 1-9 of the year only.

I need to add leading zeros to month numbers Jan-Sept only as sorting by month number does not work due to Months Oct-Dec starting with number 1. If I sort by month number, it comes up like this.
1 (Jan), 10 (Oct), 11 (Nov), 12 (Dec), 2 (Feb), 3(March) ...
Does anyone have a formula for this?
Best Answer
-
If the month field is a text value try adding a zero in front of the value and then taking the right two digits using the formula below.
=RIGHT("0" + {YOUR_MONTH_VALUE_HERE}, 2)
Hope it helps!
John
Answers
-
If the month field is a text value try adding a zero in front of the value and then taking the right two digits using the formula below.
=RIGHT("0" + {YOUR_MONTH_VALUE_HERE}, 2)
Hope it helps!
John
-
That works, thanks so much!
-
You're welcome!
-
I typically add leading zeros using the LEN() function to see if a number needs it, nested into IF()s.
e.g.
=IF(LEN(MONTH({date}))=1,"0"+MONTH({date}),MONTH({date}))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.7K Get Help
- 474 Global Discussions
- 202 Use Cases
- 515 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 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!