Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm trying to write a formala that does this:
If A="US", then B*(1+C), If A = "India", then B*(1+D) Any suggestions would be greatly appreciated. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(A1="US",B1*(1+C1),IF(A1="India",B1*(1+D1),"wha tever you want as the
answer if A1 is neither US nor India")) -- David Biddulph "Karyn" wrote in message ... I'm trying to write a formala that does this: If A="US", then B*(1+C), If A = "India", then B*(1+D) Any suggestions would be greatly appreciated. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Your almost there...
assuming data is in row 1 then, the formula can then be copied down the table... =IF(A1="US",B1*(1+C1),B1*(1+D1)) This is fine if the data in column a is only ever US or India, however to be more discrete it may be necessary to use =IF(A1="US",B1*(1+C1),IF(A1="India",B1*(1+D1),"")) Hope this helps... -- Kind regards Rik "Karyn" wrote: I'm trying to write a formala that does this: If A="US", then B*(1+C), If A = "India", then B*(1+D) Any suggestions would be greatly appreciated. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Karyn,
I can't follow this logic very well so here's a guess =IF(A1="US",B1*(1+C1),IF(A1="India",B1*(1+D1),"")) Mike "Karyn" wrote: I'm trying to write a formala that does this: If A="US", then B*(1+C), If A = "India", then B*(1+D) Any suggestions would be greatly appreciated. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
=if(A1="US",B1*(1+C1),if(A1="India",B1*(1+D1)) "Karyn" wrote: I'm trying to write a formala that does this: If A="US", then B*(1+C), If A = "India", then B*(1+D) Any suggestions would be greatly appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Counting # of Formulas in a column with formulas and entered data | Excel Worksheet Functions | |||
CELLS NOT CALC FORMULAS - VALUES STAY SME FORMULAS CORRECT?? HELP | Excel Worksheet Functions | |||
automatically copy formulas down columns or copy formulas all the | Excel Worksheet Functions | |||
Formulas not evaluated, Formulas treated as strings | Excel Discussion (Misc queries) | |||
formulas for changing formulas? | Excel Discussion (Misc queries) |