Sum country exposure

mpouliot8168

New Member
Joined
Feb 10, 2012
Messages
9
I have a bunch of data the columns of concern are the account name, Country, % of Assets. There are several occurances of each account name (rows).

What I would like to do is sum all of the % of assets for each country per account.

My final output should look like this...
------------------Country1----------Country2
Account Name 1 % Total----------% Total

Account Name 2

I know this can be done with a pivot table but I would like to use a equation.

Thanks in advance
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
I have a bunch of data the columns of concern are the account name, Country, % of Assets. There are several occurances of each account name (rows).

What I would like to do is sum all of the % of assets for each country per account.

My final output should look like this...
------------------Country1----------Country2
Account Name 1 % Total----------% Total

Account Name 2

I know this can be done with a pivot table but I would like to use a equation.

Thanks in advance
What version of Excel are you using?
 
Upvote 0
I have a bunch of data the columns of concern are the account name, Country, % of Assets. There are several occurances of each account name (rows).

What I would like to do is sum all of the % of assets for each country per account.

My final output should look like this...
------------------Country1----------Country2
Account Name 1 % Total----------% Total

Account Name 2

I know this can be done with a pivot table but I would like to use a equation.

Thanks in advance

Are we summing percentages?

On Excel 2007 or later...

B2, copied across and down:

=SUMIFS(Sheet1!$C$2:$C$400,Sheet1!$A$2:$A$400,$A2,Sheet1!$B$2:$B$400,B$1)

On all versions...

=SUMPRODUCT(Sheet1!$C$2:$C$400,--(Sheet1!$A$2:$A$400=$A2),--(Sheet1!$B$2:$B$400=B$1))

As can be seen from the formulas, Sheet1!A2:C400 is supposed to house the source data.
 
Upvote 0

Forum statistics

Threads
1,217,358
Messages
6,136,093
Members
449,991
Latest member
IslandofBDA

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