Grabbing data from a column based on another column

dskills

New Member
Joined
Sep 30, 2022
Messages
6
Office Version
  1. 365
Platform
  1. MacOS
Hello all,

I've been working on this for a day or so and can't seem to conceptually understand how to code up a formula.

I've got a sheet with 3 columns:
  • Type of meeting - there are only two types: Customer meeting, Executive meeting
  • Industry for that meeting - examples would be, say, Retail, or Finance
  • Number of people attending the meeting
What I want to do is create a summary table from this data. The summary might look like this:

Customer meetings - Finance: 4
Customer meetings - Retail: 8

Executive meetings - Finance: 2
Executive meetings - Retail: 4

The number at the end is the sum of the Number of people attending the meeting where it is both a Customer Meeting and Finance (as an example).

I can do this easily with a pivot table, but for reasons that are boring, I can't use a pivot table.

I expect the answer is easier than I think and I'm just being a dummy, but if anyone can help I'd much appreciate it!
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
You should be able to use SUMIFS formulas, e.g.

If column A contains meeting types, column B is Industry, column C is attendee count, then:

=SUMIFS(C:C,A:A,"Executive",B:B,"Finance")
 
Upvote 0
Solution

Forum statistics

Threads
1,215,059
Messages
6,122,917
Members
449,093
Latest member
dbomb1414

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