Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEAMy solution.
Formula Tool
Name2 = ToNumber(Replace([Name], "Field_", ""))
Mod26 = Mod([Name2], 26)
Div26 = CEIL([Name2]/26)-1
Char1 = IF [Div26]=0 THEN "" ELSE CharFromInt(64+[Div26]) ENDIF
Char2 = IF [Mod26]=0 THEN "Z" ELSE CharFromInt(64+[Mod26]) ENDIF
Practical one!
This one was fun. Got it done in 3 steps. Tricky part was the formula for converting number to letter