Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEAMy Solution:
Formula:
if (ceil([RecordID]/26) - 1) = 0
THEN ""
ELSE charfromint((ceil([RecordID]/26) - 1) + 64)
ENDIF
+
if mod([RecordID],26) !=0
THEN charfromint(mod([RecordID],26) + 64)
ELSE charfromint(90)
ENDIF
My solution
A neat challenge, thank you, @caro_smith !