In re: this question on SO, which I just voted to close.

The question, on SO, is simply about an Excel formula. I felt it belonged on SU, so I voted to close.

My question: Is my logic there correct, or would Excel-fu be acceptable on SO? (This is a fairly easy formula, if that matters any.)

share|improve this question

4 Answers

up vote 14 down vote accepted

We have had quite a few question regarding Excel formulas on SU and they have all been answered, so I am fairly comfotable saying they are acceptable for SU. There is a broader audience using Excel who are not neccessarily programmers.

share|improve this answer

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.

share|improve this answer
11  
I agree, and that's why I almost never vote to close Excel questions as off-topic, they can do fine on either site. – Lance Roberts Jan 27 '11 at 21:30

Random thoughts

  • Spreadsheets are, in principle, functional programming languages, but many uses of them don't have the hacker nature.
  • The risk of saying "hard ones on SO, easy ones on SU" is that it becomes harder for people to search for answers to their spreadsheet questions.
  • The question pointed to is (IMHO, of course) not very programmy, but neither is it a trivial application of one function.
share|improve this answer

Some of them belong on SO, the rest on SU, usually based on the complexity. Even worksheet-functions are small programs.

The one you mentioned probably should have been on SU.

share|improve this answer
If you agree, you could vote for it to be closed. – Brad Gilbert Sep 21 '09 at 21:25
I was holding off, so that maybe the good answer would get accepted, didn't want to hose that answerer. – Lance Roberts Sep 21 '09 at 21:34
I gave up waiting and cast vote #5. – Lance Roberts Sep 22 '09 at 2:45
I'd be interested to hear what you think of my answer to this question. – jtolle Jan 27 '11 at 21:11

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged