Every week I pull a report from a CRM (Report 1) and then a separate report from a program that records our internet activity (report 2).
Report 1: Shows a customers name, stock number, deal stage, date created and date of last engagement.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Customer[/TD]
[TD]Stock #[/TD]
[TD]Stage[/TD]
[TD]Created[/TD]
[TD]Engaged[/TD]
[/TR]
[TR]
[TD]John S[/TD]
[TD]456789[/TD]
[TD]Visit[/TD]
[TD]9/1/17[/TD]
[TD]9/5/17[/TD]
[/TR]
[TR]
[TD]Dwight R[/TD]
[TD]TMK425[/TD]
[TD]Proposal[/TD]
[TD]9/2/17[/TD]
[TD]9/4/17[/TD]
[/TR]
</tbody>[/TABLE]
Report 2: Shows the stock number, Make, Model, VDP Views, avg VDP views per day
[TABLE="width: 500"]
<tbody>[TR]
[TD]Stock #[/TD]
[TD]Make[/TD]
[TD]Model[/TD]
[TD]VDP Views[/TD]
[TD]Avg VDP Per Day[/TD]
[/TR]
[TR]
[TD]456789[/TD]
[TD]BMW[/TD]
[TD]3[/TD]
[TD]3[/TD]
[TD]1.50[/TD]
[/TR]
[TR]
[TD]TMK425[/TD]
[TD]Chevy[/TD]
[TD]Impala[/TD]
[TD]1[/TD]
[TD]1[/TD]
[/TR]
</tbody>[/TABLE]
End Goal: Combine the two reports so that I can sort the data by using a simple pivot table. Is there a way for me to look at the column containing the stock number in report 1 (column B) and if there is a match (there will be multiple matches for the same stock number) I would like data in columns B,C,D,E from report 2 to be added to columns F,G,H,I in Report 1?
[TABLE="width: 500"]
<tbody>[TR]
[TD]Customer[/TD]
[TD]Stock #[/TD]
[TD]Stage[/TD]
[TD]Created[/TD]
[TD]Engaged[/TD]
[TD]Make[/TD]
[TD]Model[/TD]
[TD]VDP Views[/TD]
[TD]AVG VDP Per Day[/TD]
[/TR]
[TR]
[TD]John S[/TD]
[TD]456789[/TD]
[TD]Visit[/TD]
[TD]9/1/17[/TD]
[TD]9/5/17[/TD]
[TD]BMW[/TD]
[TD]3[/TD]
[TD]3[/TD]
[TD]1.5[/TD]
[/TR]
[TR]
[TD]Dwight R[/TD]
[TD]TMK425[/TD]
[TD]Proposal[/TD]
[TD]9/2/17[/TD]
[TD]9/4/17[/TD]
[TD]Chevy[/TD]
[TD]Impala[/TD]
[TD]1[/TD]
[TD]1[/TD]
[/TR]
</tbody>[/TABLE]
Thank you for the help. Please let me know if this is unclear
Report 1: Shows a customers name, stock number, deal stage, date created and date of last engagement.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Customer[/TD]
[TD]Stock #[/TD]
[TD]Stage[/TD]
[TD]Created[/TD]
[TD]Engaged[/TD]
[/TR]
[TR]
[TD]John S[/TD]
[TD]456789[/TD]
[TD]Visit[/TD]
[TD]9/1/17[/TD]
[TD]9/5/17[/TD]
[/TR]
[TR]
[TD]Dwight R[/TD]
[TD]TMK425[/TD]
[TD]Proposal[/TD]
[TD]9/2/17[/TD]
[TD]9/4/17[/TD]
[/TR]
</tbody>[/TABLE]
Report 2: Shows the stock number, Make, Model, VDP Views, avg VDP views per day
[TABLE="width: 500"]
<tbody>[TR]
[TD]Stock #[/TD]
[TD]Make[/TD]
[TD]Model[/TD]
[TD]VDP Views[/TD]
[TD]Avg VDP Per Day[/TD]
[/TR]
[TR]
[TD]456789[/TD]
[TD]BMW[/TD]
[TD]3[/TD]
[TD]3[/TD]
[TD]1.50[/TD]
[/TR]
[TR]
[TD]TMK425[/TD]
[TD]Chevy[/TD]
[TD]Impala[/TD]
[TD]1[/TD]
[TD]1[/TD]
[/TR]
</tbody>[/TABLE]
End Goal: Combine the two reports so that I can sort the data by using a simple pivot table. Is there a way for me to look at the column containing the stock number in report 1 (column B) and if there is a match (there will be multiple matches for the same stock number) I would like data in columns B,C,D,E from report 2 to be added to columns F,G,H,I in Report 1?
[TABLE="width: 500"]
<tbody>[TR]
[TD]Customer[/TD]
[TD]Stock #[/TD]
[TD]Stage[/TD]
[TD]Created[/TD]
[TD]Engaged[/TD]
[TD]Make[/TD]
[TD]Model[/TD]
[TD]VDP Views[/TD]
[TD]AVG VDP Per Day[/TD]
[/TR]
[TR]
[TD]John S[/TD]
[TD]456789[/TD]
[TD]Visit[/TD]
[TD]9/1/17[/TD]
[TD]9/5/17[/TD]
[TD]BMW[/TD]
[TD]3[/TD]
[TD]3[/TD]
[TD]1.5[/TD]
[/TR]
[TR]
[TD]Dwight R[/TD]
[TD]TMK425[/TD]
[TD]Proposal[/TD]
[TD]9/2/17[/TD]
[TD]9/4/17[/TD]
[TD]Chevy[/TD]
[TD]Impala[/TD]
[TD]1[/TD]
[TD]1[/TD]
[/TR]
</tbody>[/TABLE]
Thank you for the help. Please let me know if this is unclear