It's funny that the question was considered "simply about forumlas" and thus "not programming related" when the accepted answer features the likes of this:
=IF(LEN(A1)>8,IF(AND(LEFT(A1,4)="ABCD",RIGHT(A1,4)="EFGH"),MID(A1,5,LEN(A1)-8),NA()),NA())
Does it magically become programming related if the exact same question were asked about a different system with similarly named library functions and the answer were something like this (ignoring errors I'm making from just typing this in)?
(let ((A1 (value-of-ref 'A1)))
(if (> (length A1) 8)
(if (and (eql (first-n A1 4) "ABCD")
(eql (last-n A1 4) "EFGH"))
(subseq A1 5)
(xl-err 'NA))
(xl-err 'NA)))
Excel formula questions on stackoverflow are very often about the syntax and evaluation of expressions and the use of library functions. How are things like that not programming related? Because the people asking are often not primarily programmers? (And thus often ask questions that seem simple to people who are?)
I think it's obvious that Excel in particular is one of those areas where stackoverflow and superuser just happen to overlap.