Need help with creating a lookup based on certain criteria

KaiNIGHT

New Member
Joined
Jan 2, 2016
Messages
6
Hi, I hope I can explain myself properly to get some assistance here.
The below data is on my first tab in excel, and I am trying to gain a understanding of how much Actual Revenue a specific marketing event brought in.

Marketing Event# of ContactCustomer Name Cost Projected RevenueSalesperson(s) $ Sold - Actual Revenue% ROI
Bowling4ABC $ 375.00 $ 11,250.00 $ --100%
Company A $ 1,500.00 $ 11,250.00 $ 12,320.00721%
Company B $ 375.00 $ 11,250.00 $ --100%
Company C $ 375.00 $ 11,250.00 $ 2,500.00567%
$ -#DIV/0!

<tbody>
</tbody>
<style>table { }tr { }col { }br { }td { padding-top: 1px; padding-right: 1px; padding-left: 1px; color: black; font-size: 12pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Calibri, sans-serif; vertical-align: bottom; border: medium none; white-space: nowrap; }.xl63 { font-weight: 700; text-align: center; vertical-align: middle; }.xl64 { font-weight: 700; text-align: center; vertical-align: middle; }.xl65 { }.xl66 { }.xl67 { font-weight: 700; text-align: center; vertical-align: middle; }</style>The second tab is my input tab where I log the Marketing Event, Company and, $ Sold - Actual Revenue.

Marketing EventCustomer Name $ Sold - Actual Revenue
BowlingCompany A $ 5,000.00
Company C $ 2,500.00
Company A $ 7,320.00

<tbody>
</tbody>

here is the formula I used to gain an understanding of how much Company A brought in based on my marketing efforts.

=SUMIF(INPUT!C:C,ROI!D5,INPUT!D:D)

However, I want to add the criteria of Bowling into it. So example, maybe I did a bowling event iwth company A that brought in a certain amount of revenue stream, but then it died down. Well, I had a luncheon with them 5 months later and because of that effort I was able to increase or bring in more revenue. How can I break that out to say I made $ due to the bowling event, and then the luncheon?

Thank you! <style>table { }tr { }col { }br { }td { padding-top: 1px; padding-right: 1px; padding-left: 1px; color: black; font-size: 12pt; font-weight: 400; font-style: normal; text-decoration: none; font-family: Calibri, sans-serif; vertical-align: bottom; border: medium none; white-space: nowrap; }.xl65 { font-weight: 700; text-align: center; vertical-align: middle; }.xl66 { font-weight: 700; text-align: center; vertical-align: middle; }.xl67 { }</style>
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Would SUMIFS work? If so, I am getting a #value error - I obv doing something wrong.

Marketing Effort# of ContactCustomer Name Cost Projected Revenue Salesperson(s) $ Sold - Actual Revenue % ROI
Bowling4ABC $ 375.00 $ 11,250.00 $ - -100%
BowlingCompany A $ 1,500.00 $ 11,250.00 $ 12,320.00721%
BowlingCompany B $ 375.00 $ 11,250.00#value !#value !
BowlingCompany C $ 375.00 $ 11,250.00 $ 2,500.00567%
LuncheonCompany A $ 500.00 $ 15,000.00 $ 12,320.002364%

<colgroup><col span="3"><col span="2"><col><col><col></colgroup><tbody>
</tbody>


Marketing EventCustomer Name $ Sold - Actual Revenue
BowlingCompany A $ 5,000.00
Company C $ 2,500.00
LuncheonCompany A $ 7,320.00

<colgroup><col span="2"><col></colgroup><tbody>
</tbody>
 
Upvote 0
Hi Kai,

For your sumifs to work correctly there needs to be a matching line on your summary sheet to sum against. Then as you add lines on your revenue log all criteria must be entered per line;


Book1
ABCDEFGH
1Marketing Event# of ContactCustomer NameCostProjected RevenueSalesperson(s)$ Sold - Actual Revenue% ROI
2BowlingCompany A$1,500.00$11,250.00$12,320.00
3BowlingCompany B$375.00$11,250.00$0.00
4BowlingCompany C$375.00$11,250.00$5,000.00
5LuncheonCompany A$12,320.00
6LuncheonCompany B$7,320.00
7LuncheonCompany C$0.00
Sheet1
Cell Formulas
RangeFormula
G2=SUMIFS(Sheet2!$C:$C,Sheet2!$A:$A,Sheet1!A2,Sheet2!$B:$B,Sheet1!C2)



Book1
ABC
1Marketing EventCustomer Name$ Sold - Actual Revenue
2BowlingCompany A$5,000.00
3BowlingCompany C$2,500.00
4BowlingCompany A$7,320.00
5LuncheonCompany A$5,000.00
6BowlingCompany C$2,500.00
7LuncheonCompany A$7,320.00
8LuncheonCompany B$7,320.00
Sheet2
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,832
Messages
6,121,845
Members
449,051
Latest member
excelquestion515

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