Copying contents of a cell based on a 'match' from two columns

LMaeExcel

New Member
Joined
Jan 3, 2017
Messages
14
Hello,

I am trying to collect data from different sheets into a table. I’dlike the table to auto-fill based on the date of the day, and matching the name. The formula shouldn’t count entries, but rather report or copy the number entered in the cell for that person on that date.

Example:

Table should populate from a sheet that looks something like this:


ORDERS

BILL

JOHN

GARY

7/10/2018

2

4

1

8/15/2018

2

1

2

8/16/2018

2

1

2

8/17/2018

1

4

3

8/18/2018

0

0

0

8/19/2018

0

1

0

8/20/2018

0

3

1

8/21/2018

2

2

1

8/22/2018

0

8

10

<tbody>
</tbody>

And auto-fill the table that looks something like this:


8/22/2018

REFERRALS

ORDERS

OUTREACH

COMPLETED
BILL
JOHN
GARY

<tbody>
</tbody>

So, if my formula were to be working properly with the example data above, my table would look like:


8/22/2018

REFERRALS

ORDERS

OUTREACH

COMPLETED
BILL

0
JOHN

8
GARY

10

<tbody>
</tbody>

Any help is greatly appreciated!
 
Last edited:

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Hi,

May be something like this may help:


Book1
ABCDE
1ORDERS
2BILLJOHNGARY
37/10/2018241
48/15/2018212
58/16/2018212
68/17/2018143
78/18/2018000
88/19/2018010
98/20/2018031
108/21/2018221
118/22/20180810
12
13
148/22/2018
15REFERRALSORDERSOUTREACHCOMPLETED
16BILL 0
17JOHN8
18GARY10
Sheet199
Cell Formulas
RangeFormula
B16=IF(B$15=$A$1,SUMPRODUCT(($A$3:$A$11=$A$14)*($B$2:$D$2=$A16)*$B$3:$D$11),"")
 
Upvote 0

Forum statistics

Threads
1,214,978
Messages
6,122,547
Members
449,089
Latest member
davidcom

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