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
- 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