Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am using the following command to direct what happens in column of cells:
=IF(A6=1, E6*D3, IF(A6=2, E6*E3)) This works fine for 2 options, but when I try to add a 3rd & 4th, I get an error. =IF(A6=1, E6*D3, IF(A6=2, E6*E3), IF(A6=3, E6*F3), IF(A6=4, E6*G3)))) How do I add more options? I know my parenthesis and probably more are off. Thanks! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You have too many parenthesis.
=IF(A6=1, E6*D3, IF(A6=2, E6*E3, IF(A6=3, E6*F3, IF(A6=4, E6*G3)))) sandygiz wrote: I am using the following command to direct what happens in column of cells: =IF(A6=1, E6*D3, IF(A6=2, E6*E3)) This works fine for 2 options, but when I try to add a 3rd & 4th, I get an error. =IF(A6=1, E6*D3, IF(A6=2, E6*E3), IF(A6=3, E6*F3), IF(A6=4, E6*G3)))) How do I add more options? I know my parenthesis and probably more are off. Thanks! |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This seems to work:
=IF(A6=1, E6*D3, IF(A6=2, E6*E3, IF(A6=3, E6*F3, IF(A6=4, E6*G3)))) Ie, you dont use a closing bracket after each if argument, you just put a closing bracket for each if argument at the end of the formula Philip "sandygiz" wrote in message ... I am using the following command to direct what happens in column of cells: =IF(A6=1, E6*D3, IF(A6=2, E6*E3)) This works fine for 2 options, but when I try to add a 3rd & 4th, I get an error. =IF(A6=1, E6*D3, IF(A6=2, E6*E3), IF(A6=3, E6*F3), IF(A6=4, E6*G3)))) How do I add more options? I know my parenthesis and probably more are off. Thanks! |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
maybe like this:
=IF(A6=1, E6*D3, IF(A6=2, E6*E3, IF(A6=3, E6*F3, IF(A6=4, E6*G3)))) -- Hope that helps. Vergel Adriano "sandygiz" wrote: I am using the following command to direct what happens in column of cells: =IF(A6=1, E6*D3, IF(A6=2, E6*E3)) This works fine for 2 options, but when I try to add a 3rd & 4th, I get an error. =IF(A6=1, E6*D3, IF(A6=2, E6*E3), IF(A6=3, E6*F3), IF(A6=4, E6*G3)))) How do I add more options? I know my parenthesis and probably more are off. Thanks! |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you so much!!
"Philip Reece-Heal" wrote: This seems to work: =IF(A6=1, E6*D3, IF(A6=2, E6*E3, IF(A6=3, E6*F3, IF(A6=4, E6*G3)))) Ie, you dont use a closing bracket after each if argument, you just put a closing bracket for each if argument at the end of the formula Philip "sandygiz" wrote in message ... I am using the following command to direct what happens in column of cells: =IF(A6=1, E6*D3, IF(A6=2, E6*E3)) This works fine for 2 options, but when I try to add a 3rd & 4th, I get an error. =IF(A6=1, E6*D3, IF(A6=2, E6*E3), IF(A6=3, E6*F3), IF(A6=4, E6*G3)))) How do I add more options? I know my parenthesis and probably more are off. Thanks! |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=E6*CHOOSE(A6,D3,E3,F3,G3)
Tim "Vergel Adriano" wrote in message ... maybe like this: =IF(A6=1, E6*D3, IF(A6=2, E6*E3, IF(A6=3, E6*F3, IF(A6=4, E6*G3)))) -- Hope that helps. Vergel Adriano "sandygiz" wrote: I am using the following command to direct what happens in column of cells: =IF(A6=1, E6*D3, IF(A6=2, E6*E3)) This works fine for 2 options, but when I try to add a 3rd & 4th, I get an error. =IF(A6=1, E6*D3, IF(A6=2, E6*E3), IF(A6=3, E6*F3), IF(A6=4, E6*G3)))) How do I add more options? I know my parenthesis and probably more are off. Thanks! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Choices | Excel Discussion (Misc queries) | |||
=if with multiple choices | Excel Worksheet Functions | |||
Choices for User | Excel Worksheet Functions | |||
Book choices | Excel Programming | |||
Choices | Excel Worksheet Functions |