![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Apr 2002
Posts: 35
|
Hi. I need to know how do I make this formula work: I want to say If(A1=4,5)If(A7=3,4)If(A7=2,3)If(A7=1,2). What I am trying to accomplish is to state in A1 what a level is, then state in A3 the value that i specify in that formula. So I went to A3 and tried that forumula, and it only works if I only have one argument. It will let me say IF(a1=4,5), but there will be levels 1 - 4 in column A, so depending on what level I enter, I need column C to give me a point value of 2 - 5. How do I tell a cell to do this?
[ This Message was edited by: bobbieexcel on 2002-04-18 15:57 ] [ This Message was edited by: bobbieexcel on 2002-04-18 15:58 ] |
|
|
|
|
|
#2 | |
|
Board Regular
Join Date: Feb 2002
Posts: 76
|
Quote:
=IF(A1=4,7,IF(A1=3,6,IF(A1=2,5))) That should give the right answer for each situation. To explain the above: (I know that formula may be hard to read) The IF function is like this: IF(CONDITION,VALUE IF TRUE, VALUE IF FALSE) So if a=1 is true, you give a 7... But if a1=1 is false, you test for the next value (a1=3) if that is true you give a 6... If it is false you can test for the next value. You can do this as many times as you want. Just be careful with the parenthesis. [ This Message was edited by: John McGraw on 2002-04-18 15:55 ] |
|
|
|
|
|
|
#3 |
|
Board Regular
Join Date: Feb 2002
Location: Macon, Georgia USA
Posts: 124
|
Use the following type of statement
=if(a1=1,2,if(a2=2,3,if(a3=3,4))) |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|