I thought there were lots of brainteasers around here...
Array-enter in the cell next to A1 where the first word to test is in
B1=MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1)=MID(A1,LEN(A1)+1-ROW(INDIRECT("1:"&LEN(A1))),1)
Hope it works.
Aladin
Ah! Steve (see above) is right! Your solution
returns TRUE for "solas". I guess I goofed when I
pasted your formula into my test case. I thought
you had found a simplier solution that the one
I dreamed up. Care to try again?
Ah! On further inspection you did find a simplier
solution than mine -- you just failed to pass it
to the AND() function as shown below.
{=AND(MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1)=MID(A1,LEN(A1)+1-ROW(INDIRECT("1:"&LEN(A1))),1))}
That's right. The expression must me ANDed. Never Cut and Paste too fast -- not too often anyway.
Aladin