Microsoft Excel If Statements - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T14:19:14Z http://stackoverflow.com/feeds/question/1079635 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1079635/microsoft-excel-if-statements 0 Microsoft Excel If Statements Rachael Rayner 2009-07-03T14:35:37Z 2009-07-04T03:24:20Z <p>I have altered a statement I got from <a href="http://stackoverflow.com/questions/1079228/microsoft-excel-2007-if-statements">a previous answer</a> a bit and it now looks like this:</p> <p>=IF(C6=$R$3,IF(D6&lt;=0.99,$U$2,IF(AND(D6>0.99,D6&lt;=4.99),$U$3,IF(AND(D6>4.99,D6&lt;=14.99),$U$4,IF(AND(D6>14.99,D3&lt;=29.99),$U$5,IF(AND(D6>29.99,D6&lt;99.99),$U$6,""))))),$S$8)</p> <p>It all works fine until you change the value in cell D6 to say £45 when it still picks up the figure in cell U5.</p> <p>Can you or anyone else help me tweak this so that it works? I need a statement to do the following:</p> <p>If C2=R2 and D2 is &lt; T2 then U2, if D2 is >T but T3 but &lt; T4 then U4 if D2 is > T4 but &lt; T5 then U5, if D2 is > T5 but &lt; T6 then U6 BUT if C2 does not equal R2 then S8</p> http://stackoverflow.com/questions/1079635/microsoft-excel-if-statements/1081411#1081411 0 Answer by barrowc for Microsoft Excel If Statements barrowc 2009-07-04T03:16:02Z 2009-07-04T03:24:20Z <p>Take all your problems and rip them apart:</p> <p>If C2=R2 and D2 is &lt; T2 then U2, if D2 is >T but T3 but &lt; T4 then U4 if D2 is > T4 but &lt; T5 then U5, if D2 is > T5 but &lt; T6 then U6 BUT if C2 does not equal R2 then S8</p> <p>Start with this using <code>NA()</code> to represent parts which haven't been completed yet (this will show the <code>#N/A</code> value in the cell):</p> <pre><code>=IF(C2=R2,NA(),S8) </code></pre> <p>Add the lookup based on D2:</p> <pre><code>=IF(C2=R2,IF(D2&lt;T2,U2,NA()),S8) </code></pre> <p>Assuming that the next part is D2 > T2 and D2 &lt; T3 (althought strictly this formula says D2 >= T2) and result is U3:</p> <pre><code>=IF(C2=R2,IF(D2&lt;T2,U2,IF(D2&lt;T3,U3,NA())),S8) </code></pre> <p>Now add between T3 and T4:</p> <pre><code>=IF(C2=R2,IF(D2&lt;T2,U2,IF(D2&lt;T3,U3,IF(D2&lt;T4,U4,NA()))),S8) </code></pre> <p>Between T4 and T5:</p> <pre><code>=IF(C2=R2,IF(D2&lt;T2,U2,IF(D2&lt;T3,U3,IF(D2&lt;T4,U4,IF(D2&lt;T5,U5,NA())))),S8) </code></pre> <p>Finally between T5 and T6:</p> <pre><code>=IF(C2=R2,IF(D2&lt;T2,U2,IF(D2&lt;T3,U3,IF(D2&lt;T4,U4,IF(D2&lt;T5,U5,IF(D2&lt;T6,U6,NA()))))),S8) </code></pre> <p>We still have <code>NA()</code> because you haven't defined the behaviour for C2=R2 and D2 >= T6</p> <p><hr /></p> <p>As Stobor said in the comment to your original question, using <code>VLOOKUP</code> would be much better - see <a href="http://office.microsoft.com/en-us/excel/HP052093351033.aspx" rel="nofollow">http://office.microsoft.com/en-us/excel/HP052093351033.aspx</a> for details</p> <p>Your current structure in the T and U columns won't work with <code>VLOOKUP</code> because:</p> <blockquote> <p>the next largest value that is less than <em>lookup value</em> is returned</p> </blockquote> <p>This would mean that <code>VLOOKUP</code> would return <code>U3</code> when you wanted <code>U2</code>, <code>U4</code> instead of <code>U3</code> and so on. To solve this you would need to move all of the entries in the U column down by one row, put a dummy value or <code>=NA()</code> into U2 and create a value in T7 that was greater than the existing value in T6</p>