<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: Excel question, I keep getting a #Value!!</title>
	<link>http://ask.metafilter.com/123808/Excel-question-I-keep-getting-a-Value/</link>
	<description>Comments on Ask MetaFilter post Excel question, I keep getting a #Value!!</description>
	<pubDate>Wed, 03 Jun 2009 17:10:01 -0800</pubDate>
	<lastBuildDate>Wed, 03 Jun 2009 17:10:01 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Excel question, I keep getting a #Value!!</title>
		<link>http://ask.metafilter.com/123808/Excel-question-I-keep-getting-a-Value</link>	
		<description>Why does the following formula provide a #Value! instead of False and how do I fix it? &lt;br /&gt;&lt;br /&gt; The formula below is not working for me...&lt;br&gt;
 &lt;br&gt;
=IF(ISNUMBER(SEARCH(&quot;rejected&quot;,A10)),&quot;true&quot;,IF(SEARCH(&quot;paper&quot;,A10),&quot;true&quot;,&quot;false&quot;))&lt;br&gt;
 &lt;br&gt;
Also, if anyone has any reason as to why this formula requires &apos;ISNUMBER&apos; to work...that would be great.</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2009:site.123808</guid>
		<pubDate>Wed, 03 Jun 2009 17:06:38 -0800</pubDate>
		<dc:creator>penguingrl</dc:creator>
		
			<category>Excel</category>
		
	</item> <item>
		<title>By: arm426</title>
		<link>http://ask.metafilter.com/123808/Excel-question-I-keep-getting-a-Value#1769324</link>	
		<description>What&apos;s the purpose of the formula--to display &quot;true&quot; when a cell says rejected or paper and false if it says neither?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.123808-1769324</guid>
		<pubDate>Wed, 03 Jun 2009 17:10:01 -0800</pubDate>
		<dc:creator>arm426</dc:creator>
	</item><item>
		<title>By: dfriedman</title>
		<link>http://ask.metafilter.com/123808/Excel-question-I-keep-getting-a-Value#1769328</link>	
		<description>I get &quot;true&quot; not #Value! when I try to formula.&lt;br&gt;
&lt;br&gt;
I would look at the formatting of the contents of cell A10.  Is the text that you see actually formatted as text?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.123808-1769328</guid>
		<pubDate>Wed, 03 Jun 2009 17:12:55 -0800</pubDate>
		<dc:creator>dfriedman</dc:creator>
	</item><item>
		<title>By: emumimic</title>
		<link>http://ask.metafilter.com/123808/Excel-question-I-keep-getting-a-Value#1769346</link>	
		<description>I had dfriedman&apos;s experience; if the formula is supposed to do what arm426 says, then it works for me.&lt;br&gt;
&lt;br&gt;
I don&apos;t think you need ISNUMBER (or maybe you need it because you&apos;re using SEARCH), but I got the same result by using:&lt;br&gt;
&lt;br&gt;
=IF(A10=&quot;rejected&quot;,&quot;true&quot;,IF(A10=&quot;paper&quot;,&quot;true&quot;,&quot;false&quot;))</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.123808-1769346</guid>
		<pubDate>Wed, 03 Jun 2009 17:27:31 -0800</pubDate>
		<dc:creator>emumimic</dc:creator>
	</item><item>
		<title>By: penguingrl</title>
		<link>http://ask.metafilter.com/123808/Excel-question-I-keep-getting-a-Value#1769352</link>	
		<description>When it should say False it says #Value! instead. So, when rejected or paper are not present in the cell it says #Value! and not False.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.123808-1769352</guid>
		<pubDate>Wed, 03 Jun 2009 17:32:06 -0800</pubDate>
		<dc:creator>penguingrl</dc:creator>
	</item><item>
		<title>By: dfriedman</title>
		<link>http://ask.metafilter.com/123808/Excel-question-I-keep-getting-a-Value#1769353</link>	
		<description>You need ISNUMBER if there is a text string in A10.  If the only text in A10 is either &quot;rejected&quot; OR &quot;paper&quot; with no other accompanying text then you do not need the ISNUMBER(SEARCH(...)) syntax.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.123808-1769353</guid>
		<pubDate>Wed, 03 Jun 2009 17:32:16 -0800</pubDate>
		<dc:creator>dfriedman</dc:creator>
	</item><item>
		<title>By: dfriedman</title>
		<link>http://ask.metafilter.com/123808/Excel-question-I-keep-getting-a-Value#1769357</link>	
		<description>Try:&lt;br&gt;
&lt;br&gt;
=IF(OR(ISNUMBER(SEARCH(&quot;rejected&quot;,A10)),(ISNUMBER(SEARCH(&quot;paper&quot;,A10)))),&quot;true&quot;,&quot;false&quot;)</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.123808-1769357</guid>
		<pubDate>Wed, 03 Jun 2009 17:35:03 -0800</pubDate>
		<dc:creator>dfriedman</dc:creator>
	</item><item>
		<title>By: emumimic</title>
		<link>http://ask.metafilter.com/123808/Excel-question-I-keep-getting-a-Value#1769360</link>	
		<description>Oh, got it.  Try this:&lt;br&gt;
=IF(ISNUMBER(SEARCH(&quot;paper&quot;,A10)),&quot;true&quot;,IF(ISNUMBER(SEARCH(&quot;rejected&quot;,A10)),&quot;true&quot;,&quot;false&quot;))</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.123808-1769360</guid>
		<pubDate>Wed, 03 Jun 2009 17:39:44 -0800</pubDate>
		<dc:creator>emumimic</dc:creator>
	</item><item>
		<title>By: emumimic</title>
		<link>http://ask.metafilter.com/123808/Excel-question-I-keep-getting-a-Value#1769361</link>	
		<description>Or dfriedman&apos;s more elegant version :)</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.123808-1769361</guid>
		<pubDate>Wed, 03 Jun 2009 17:41:03 -0800</pubDate>
		<dc:creator>emumimic</dc:creator>
	</item><item>
		<title>By: dfriedman</title>
		<link>http://ask.metafilter.com/123808/Excel-question-I-keep-getting-a-Value#1769369</link>	
		<description>When I am trying to do these complex logic statements in Excel, I find it helps me to articulate the logic: &quot;IF &quot;rejected&quot; OR &quot;paper&quot; are in cell A10, THEN return &quot;true&quot;, ELSE return &quot;false.&quot;&lt;br&gt;
&lt;br&gt;
This tells me that I need to use the OR(...) syntax with something nested into it.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.123808-1769369</guid>
		<pubDate>Wed, 03 Jun 2009 17:44:24 -0800</pubDate>
		<dc:creator>dfriedman</dc:creator>
	</item><item>
		<title>By: penguingrl</title>
		<link>http://ask.metafilter.com/123808/Excel-question-I-keep-getting-a-Value#1769402</link>	
		<description>Thank you, guys, it worked! I also didn&apos;t know Excel is not a fan of copying and pasting equations, but when I wrote it manually, it worked!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2009:site.123808-1769402</guid>
		<pubDate>Wed, 03 Jun 2009 18:21:42 -0800</pubDate>
		<dc:creator>penguingrl</dc:creator>
	</item>
	</channel>
</rss>
