vote up -1 vote down star

my requirement as follows:

if a5 = 'a' then b5 = 1 
if a5 = 'b' then b5 = 2
if a5 = 'c' then b5 = 3
if a5 = 'd' then b5 = 4
if a5 = 'e' then b5 = 5
else enter correct letter

total no. of conditions are more than 5 as of now and then i need to put default msg for this like 'ENTER CORRECT LETTER '

flag

0% accept rate
this question is explicitely against stackoverflow policy : meta.stackoverflow.com/questions/18242/… – madewulf Nov 6 at 13:59
Doesn't necessarily look like a homework assignment to me. – Wooble Nov 6 at 14:04
You must be joking. – JonnyD Nov 6 at 14:05
1  
maewulf, I'm not interested in this question per se but that of the"policy" which you claim. The link you sent refers to a discussion about policy, with no clear ruling emerging, nor a word from the site operator. So: Is there really such a policy, and where is it documented? – Carl Smotricz Nov 6 at 14:19
doesn't this belong on super-user? – Jason Tholstrup Nov 6 at 14:24
show 2 more comments

6 Answers

vote up 2 vote down

Excel's IF statement is IF(condition, trueValue, FalseValue). You can nest them to accomplish if-else chains via IF(condition1, trueValue, IF(elseCondition, elseTrue, defaultValue))

Formulas are entered in a cell in Excel by starting the cell's contents with an equals sign.

Conditions of equality in Excel use single equals comparison, not double equals.

There are other ways to approach the problem; if you had a range defined of valid entries, for example, MATCH would be useful for finding the position of a matching cell within that range.

link|flag
vote up 2 vote down
 =IF(A5="a",1,
     IF(A5="b",2,
        IF(A5="c",3,
           IF(A5="d",4,
              IF(A5="e",5,"Enter Correct Letter")))))
link|flag
vote up 2 vote down

Insert this into cell B5

=IF(OR(CODE(A5)<97,CODE(A5)>101),"ENTER CORRECT LETTER",CODE(A5)-96)
link|flag
vote up 0 vote down

you can see example implimentation in this sheet. Let me know if it helps or you need further explanation.

link|flag
vote up 0 vote down

In B5:

=IF(AND(CODE(A5)-96 > 0, CODE(A5)-96 < 6), CODE(A5)-96, "ENTER CORRECT LETTER")
link|flag
vote up 0 vote down
=IF(ISERROR(FIND(A5,"ABCDE")),"Enter correct letter",CODE(A5)-64)

This will work with as many letters as you want.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.