Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If A17 = horiz curve and C17 = 90 then answer should return what is in C10,
but if A17 = horiz curve and C17 = 45 then answer should return = C11 how do I write a formula for this? Darryl |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=IF(AND(A17="horiz curve",C17=90),C10,IF(AND(A17="horiz curve",C17=45),C11,""))
-- Gary''s Student - gsnu201001 "Darryl" wrote: If A17 = horiz curve and C17 = 90 then answer should return what is in C10, but if A17 = horiz curve and C17 = 45 then answer should return = C11 how do I write a formula for this? Darryl |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"Darryl" wrote:
If A17 = horiz curve and C17 = 90 then answer should return what is in C10, but if A17 = horiz curve and C17 = 45 then answer should return = C11 how do I write a formula for this? That depends. What result do you want when those conditions are not met; that is, when you would not get C10 or C11? The following results in a null string ("") in that case. =if(A17<"horiz curve", "", if(C17=90, C10, if(C17=45, C11, ""))) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Multiple functions, conditional functions | Excel Worksheet Functions | |||
How to convert cell formula functions to code functions | Excel Discussion (Misc queries) | |||
formula/functions for average and if functions | Excel Worksheet Functions | |||
efficiency: database functions vs. math functions vs. array formula | Excel Discussion (Misc queries) | |||
Looking for a site with functions that substitute the ATP functions | Excel Worksheet Functions |