Hi Everyone,
I have a spreadsheet that manages revisions of different documents. I'm currently using this formula to convert letters to ASCII value:
=IFERROR(SUMPRODUCT(CODE(UPPER(MID(G2,ROW(INDIRECT("1:"&LEN(G2))),1)))),"")
I only want Capital letters, and this formula works. For A (or a), this formula gives me 65. For Z or z, i get 90. for AA, I get 130.
Problem: How do i convert 130 back to AA? My current formula is:
=IFERROR(CHAR(MAXIFS(Formulas!I:I,Formulas!A:A,'Training Matrix'!A7)),"")
For AA, I get a comma, for AB I get the "f" symbol, for AC i get 2 comas. Ideally, I need both formulas to work till ZZ.
Please help!
I have a spreadsheet that manages revisions of different documents. I'm currently using this formula to convert letters to ASCII value:
=IFERROR(SUMPRODUCT(CODE(UPPER(MID(G2,ROW(INDIRECT("1:"&LEN(G2))),1)))),"")
I only want Capital letters, and this formula works. For A (or a), this formula gives me 65. For Z or z, i get 90. for AA, I get 130.
Problem: How do i convert 130 back to AA? My current formula is:
=IFERROR(CHAR(MAXIFS(Formulas!I:I,Formulas!A:A,'Training Matrix'!A7)),"")
For AA, I get a comma, for AB I get the "f" symbol, for AC i get 2 comas. Ideally, I need both formulas to work till ZZ.
Please help!
Last edited: