Thread: PIVOT %
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
ShaneDevenshire ShaneDevenshire is offline
external usenet poster
 
Posts: 2,344
Default PIVOT %

Hi,

#1: =SUMIF(B2:B5,"Non-us",D2:D5)
#2: =SUMIF(B2:B5,"us",D2:D5)
#3: =#1/SUM(D2:D5)
#4: =1-#3

This assumes you data is in the range B2:D5. suppose #1 above is in cell G1
and G2 contains #2, then in G3 you could also use
=G1/SUM(D2:D5)
and in G4
=1-G3

--
Thanks,
Shane Devenshire


"Sunny FL" wrote:

I am stuck... I have tons of data as summarized below. I want to get 4 rows
for each customer. One Row will be the Sum of the NonUS, Next Row, Sum of
US, and then the next 2 rows % of the Revenue from US and NonUS for that
Customer.

I can get the first 2, it is the last 2 that is messing me up. Any ideas?

Cust# COUNTRY DATE REV
10756V NON-US 200807 10
10756V NON-US 200808 20
10756V NON-US 200801 10
10756V US 200709 20

--
Sunny FL