Turn Numbers Into Letters
Lucas Rayala
✭✭✭✭✭✭
Here's a handy formula to turn the numbers 1-26 into letters. Assume that the number you want to convert is in a column called "Number". In another column, create the following formula:
=RIGHT(LEFT("ABCDEFGHIJKLMNOPQRSTUVWXYZ", Number@row), 1)
If you need to increment these beyond Z, it gets a little more complicated, but here's how you can do it using the pattern, "...X, Y, Z, AA, AB, AC..." (going up to "ZZ", which is 702 character combinations):
=RIGHT(LEFT("ABCDEFGHIJKLMNOPQRSTUVWXYZ", ((Number@row - IF(MOD(Number@row, 26) = 0, 26, MOD(Number@row, 26))) / 26)), 1) + RIGHT(LEFT("ABCDEFGHIJKLMNOPQRSTUVWXYZ", IF(MOD(Number@row, 26) = 0, 26, MOD(Number@row, 26))), 1)
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives