M
maz1987
Member
It can be reduced further by changing LEFT(String,1) to LEFT(String), which appears to give the first letter by default.
Also, you do not need to specify the formula to give 0 if the test is false, so the ,0 part can also be removed:
which is 86 characters.
I feel we're just refining it now so...back to study!
Also, you do not need to specify the formula to give 0 if the test is false, so the ,0 part can also be removed:
Code:
=IF(SUM(IF(MID(A1,ROW(A:A),1)=LEFT(RIGHT(A1,ROW(A:A))),1))=LEN(A1),,"No ")&"Palindrome"
which is 86 characters.
I feel we're just refining it now so...back to study!