Reputation: 11
I need help in generating excel report.Can anyone of you please help me.
I have 2 excel files. I have tried to paste the files in the question.
Column A Column B Column C
----------------------------------------------------
$www.example1.com/ab 200 abc
URL Hits
-----------------------------------------
$www.something.com/dir/abc 1000
$www.example1.com/ab 100
$www.example2.com/cd 50
$www.example1.com/ab 100
Steps:
Any kind of hints would be helpful. I tried many options, but none of them worked.
Upvotes: 1
Views: 83
Reputation: 70
Should be possible under the following conditions:
Then use code similar to this example:
=SUMIF([Name of file 2]NameOfSheet!$A$2:$C$6;A2;[Name of file 2]NameOfSheet!$B$2:$B$6)
Where $A$2:$C$6
is the range of data in file 2 and A2
is the cell with the value in file 1 and $B$2:$B$6
is the range of data to be summed up within file 2.
Hope this helps.
Upvotes: 1