View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default If statements refering to data validated ranges

(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?