Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am creating a spredsheet where a series of questions are posed with data
validated answers - such as '0-6 months' or 'over 6 months'. Then I want to add an if statement to another cell that goes if the answer to the above question (if(c30=over 6 months, yes, no) but I get an error message - any suggestions? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
(if(c30=over 6 months, yes, no)
Try it like this: =IF(C30="over 6 months","yes","no") -- Biff Microsoft Excel MVP "skimark" wrote in message ... I am creating a spredsheet where a series of questions are posed with data validated answers - such as '0-6 months' or 'over 6 months'. Then I want to add an if statement to another cell that goes if the answer to the above question (if(c30=over 6 months, yes, no) but I get an error message - any suggestions? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Enclosing the text strings in your IF function should make it work:
=IF(C30="over 6 months","Yes", "No") Hope this helps, Hutch "skimark" wrote: I am creating a spredsheet where a series of questions are posed with data validated answers - such as '0-6 months' or 'over 6 months'. Then I want to add an if statement to another cell that goes if the answer to the above question (if(c30=over 6 months, yes, no) but I get an error message - any suggestions? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Creating a list from validated data | Excel Discussion (Misc queries) | |||
Using 'OR' with validated data | Excel Worksheet Functions | |||
Validated cells and IF statements | Excel Discussion (Misc queries) | |||
IF statements and ranges | Excel Worksheet Functions | |||
Refering to a tab using data from a cell | Excel Worksheet Functions |