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
- 64.1K Get Help
- 413 Global Discussions
- 221 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 461 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives