• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

LookUP formula using 3 conditions

Hello Dear Friends,


Could you please refer the attached spreadhseet below and kindly suggest a formula to lookup sales values using 3 conditions.


http://speedy.sh/eT9xa/LookUP-Formula-with-mutiple-conditions.xls


Thanks heaps

Excel Dumbo
 
C9 = =COUNTIFS('LookUP Sheet'!$E:$E,Result!$A$7,'LookUP Sheet'!$F:$F,Result!$A9,'LookUP Sheet'!$G:$G,Result!C$8)


you might want to change the column range as required....

Drag it across and below as required...
 
Missed out...you want sales figure, try this


C9

=SUMIFS('LookUP Sheet'!$K$1:$K$500,'LookUP Sheet'!$E$1:$E$500,Result!$A$7,'LookUP Sheet'!$F$1:$F$500,Result!$A9,'LookUP Sheet'!$G$1:$G$500,Result!C$8)


When changing range, change all of them and press enter
 
Hi Ecel Dumbo


Try the following LOOKUP,in C3 copy across and down. The TRIM fuction has been used as you have trailing spaces.


=LOOKUP(2,1/(('LookUP Sheet'!$E$2:$E$61=$A$1)*('LookUP Sheet'!$G$2:$G$61=C$2)*('LookUP Sheet'!$F$2:$F$61=TRIM($A3))),'LookUP Sheet'!$K$2:$K$61)


OR a SUMPRODUCT:

=SUMPRODUCT(--('LookUP Sheet'!$E$2:$E$61=$A$1),--('LookUP Sheet'!$F$2:$F$61=TRIM($A3)),--('LookUP Sheet'!$G$2:$G$61=C$2),'LookUP Sheet'!$K$2:$K$61)


@ Indian. SUMIFS is not available in Excel 2003<
 
Back
Top