Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
hi all,
i'm making a questionnaire/calculator and have added a YES/NO drop down menu. If the users selects "YES" i'd like excel to execute the following equation B9*B8*0.5 but haven't been able to work out how to do it. any help would be greatly received. shane |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If your YES/NO is in B10, then your formula would be
=IF(B10="YES",B9*B8*0.5,"whatever you want if the answer isn't YES") If you want the result to be blank if B10 is not YES, then =IF(B10="YES",B9*B8*0.5,"") -- David Biddulph "shane" wrote in message ... hi all, i'm making a questionnaire/calculator and have added a YES/NO drop down menu. If the users selects "YES" i'd like excel to execute the following equation B9*B8*0.5 but haven't been able to work out how to do it. any help would be greatly received. shane |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In an adjacent cell enter this
=IF(cellref="YES",B9*B8*0.5,"NO selected, what now?") Where cellref is the cell with the dropdown Gord Dibben MS Excel MVP On Wed, 17 Oct 2007 11:00:00 -0700, shane wrote: hi all, i'm making a questionnaire/calculator and have added a YES/NO drop down menu. If the users selects "YES" i'd like excel to execute the following equation B9*B8*0.5 but haven't been able to work out how to do it. any help would be greatly received. shane |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In the cell where you want this calculation performed, place something
like this (assuming that your Yes/No field is in column A): =IF(A8="Yes",B9*B8*0.5,"") shane wrote: hi all, i'm making a questionnaire/calculator and have added a YES/NO drop down menu. If the users selects "YES" i'd like excel to execute the following equation B9*B8*0.5 but haven't been able to work out how to do it. any help would be greatly received. shane |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
equation as text string and its numeric result | Excel Discussion (Misc queries) | |||
IF Function with equation and text | Excel Worksheet Functions | |||
Equation Editor- problem when editing an equation | Excel Discussion (Misc queries) | |||
Equation in text string? | Excel Discussion (Misc queries) | |||
Equation | Excel Discussion (Misc queries) |