Use 3 criteria to find piece of data

jonathan92591

Board Regular
Joined
Oct 27, 2011
Messages
65
Excel Workbook
ABCDE
1Hello everyone,****
2*****
3Use 3 criteria to find piece of data****
4*****
5--****
6*****
7Excel or Access version:Excel 2010***
8*****
9Computer operating system:Windows XP***
10*****
11Sample data:EmployeIDMonthTSBM 1-15TSBM 16-31
12*JCB001Jan5000080000
13*JCB001Feb5500085000
14*JCB001Mar6000090000
15*JCB001Apr6500095000
16*JCB001May70000100000
17*JCB001Jun75000105000
18*JCB001Jul80000110000
19*JCB001Aug85000115000
20*JCB001Sep90000120000
21*JCB001Oct95000125000
22*JCB001Nov100000130000
23*JCB001Dec105000135000
24Formula(s) right now:= VLOOKUP(K4,BE!$1:$1048576,MATCH('JCB001'!$B$5,BE!$1:$1,0),0)***
25*****
26Current result(s):50000***
27*****
28My goal:To have the formula look at the employee, the time period, and the month, and return a number from the backend data sheet.***
29*****
30Error message:No error message***
31*****
32How error occurred:No error message***
33*****
34Generated in:Excel 2010***
35*****
36Thank you.****
37*****
38JT :)****
Form


Here is the dashboard I'm working on.


Excel Workbook
ABCDEFGHIJKL
4*DAYS*MO vs. PERSONAL GOALHIGH SALESYTD MO. AVG*JCB001
5*TSBM 1-15TSBM 16-31TOTAL MOMS Goal%$PC$ * * * * *4,167*YEARCAREER SALES
6Jan$50,000$0$50,000#N/A0%$115,790DRM1100%*2006#N/A
7Feb$0$0$0#N/A0%$113,006SGF-100%*2007#N/A
8Mar$0$0$0#N/A0%$115,935DRM-100%*2008#N/A
9Apr$0$0$0#N/A0%$109,580JCB-100%*2009#N/A
10May$0$0$0#N/A0%$121,403DRM-100%*2010#N/A
11Jun$0$0$0#N/A0%$120,115JCB-100%*2011#N/A
12Jul$0$0$0#N/A0%$172,353SGF-100%*Total#N/A
13Aug$0$0$0#N/A0%$110,191JCB-100%***
14Sep$0$0$0#N/A0%$110,765SGF-100%***
15Oct$0$0$0#N/A0%$129,054TMI-100%***
16Nov$0$0$0#N/A0%$100,354SGF-100%***
17Dec$0$0$0#N/A0%$129,670TMI-100%***
18*$50,000$0$50,000#N/A0%$1,448,216*****
JCB001
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
I've been working on sumproduct.

Here is my current formula.

=SUMPRODUCT(--(BE!$A$2:$A$1000='JCB001'!K4:L4),--(BE!$B$2:$B$1000='JCB001'!$A7),(BE!$C$2:$C$1000))

Here is my result.

#VALUE!

My desired value returned is: 55000
 
Upvote 0
I found a solution.

Formula: =SUMPRODUCT(--(BE!$A$2:$A$1000='JCB001'!$K$4),--(BE!$B$2:$B$1000='JCB001'!$A7),BE!$C$2:$C$1000)

Returns: $55,000

Thanks for your help though if you were trying! Hopefully this helps someone else.

My quick recap: I was trying to use vlookup and match and something else, when really I just needed a sumproduct. Sumproduct is neat, just make sure you have the same formatting for your cells, understand the "double negative" aspect, and don't include headings in your ranges.

Thanks and good day to you all!

JT
 
Upvote 0

Forum statistics

Threads
1,215,325
Messages
6,124,254
Members
449,149
Latest member
mwdbActuary

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top