Sumx? Calculate?

gleblanc

New Member
Joined
May 4, 2012
Messages
4
Hi,

I have a data set looking like this:

Cust__SalesRep___Invoice#___GL Account#_____Amount$
A_____John______21108______GrossSales_____1000.00
A_____John______21108______FreightCharges___133.00
B_____Eric_______21109______GrossSales______888.00

I need to calculate a 3% sale commission as follows:

1- For invoices with freight charges shown on invoice, commission is 3% of gross sales amount. By example, on invoice 21108, commission is (1133-133)*3%=30.00$

2- For invoices without freight charges shown on invoice (ie included in sale price), commission is 3% of 98% of gross sales amount. By example, on invoice 21109, commission is 888*98%*3%=26.11$

Obviously, my pivot table will summarize by customer and sales rep so I suppose I need a calculated column in my powerpivot data.

My problem is to determine if that "distinct" invoice has freight charge on it (another line) and how the commission must be calculated knowing that...

Thanks,

Guillaume
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
This might not be the most elegegant solution but it works.


Firstly in powerpivot create 2 new calculated columns firsly "Gross sales" with formula
Code:
=if([GL Account#]="grosssales",[Amount],blank())
Secondly "Freight Charges" formula
Code:
=if([GL Account#]="freightcharges",[Amount],blank())
This splits the costs into seperate columns so you can now work with them.

Now create your pivot table and create a new measure "Commission"
Code:
CALCULATE(if(sum(Table1[Freight Charges])>0,sum(Table1[Gross Sales])*0.03,sum(Table1[Gross Sales])*0.98*0.03))
Where "Table1" is the name of your table. This gives you this





<table border="1" bordercolor="#999999" cellspacing="0"> <tbody><tr><td rowspan="1" colspan="1" align="left" bgcolor="#FFFFFF" height="25.5" valign="bottom" width="126">Row Invoice </td><td rowspan="1" colspan="1" align="left" bgcolor="#FFFFFF" height="25.5" valign="bottom" width="108">Commission </td></tr> <tr><td rowspan="1" colspan="1" align="left" bgcolor="#FFFFFF" height="25.5" valign="bottom" width="126">21108 </td><td rowspan="1" colspan="1" align="right" bgcolor="#FFFFFF" height="25.5" valign="bottom" width="108">30 </td></tr> <tr><td rowspan="1" colspan="1" align="left" bgcolor="#FFFFFF" height="25.5" valign="bottom" width="126">21109 </td><td rowspan="1" colspan="1" align="right" bgcolor="#FFFFFF" height="25.5" valign="bottom" width="108">26.1072 </td></tr> <tr><td rowspan="1" colspan="1" align="left" bgcolor="#FFFFFF" height="25.5" valign="bottom" width="126">Grand Total </td><td rowspan="1" colspan="1" align="right" bgcolor="#FFFFFF" height="25.5" valign="bottom" width="108">56.64 </td></tr> </tbody></table>

I think you can then combine this at other levles, but havent tested it. Hope that helps

Mike


-- removed inline image ---
 
Upvote 0
Add the following measures:

Sales:=CALCULATE(SUM(Amount),Table1[GL Account]="GrossSales")

Freight:=CALCULATE(SUM(Amount),Table1[GL Account]="FreightCharges")

Commission:=SUMX(VALUES(Table1[Invoice]),[Sales]*0.03*(1-([Freight]=0)*0.02))
 
Upvote 0
Thank you for your replies.

Masplin: It worked but the pivot table didn't summarize correctly. For some reason, my subtotals were not right.

ruve1k: It is working perfectly. Can I ask you 2 quick questions:
1- Is VALUES the same as DISTINCT ? What is the difference ?
2- How can you translate in words this portion of the commission measure: *(1-([Freight]=0)*0.02) ?

Thanks again!
 
Upvote 0
  1. Yes, VALUES pretty much does the same thing that DISTINCT would do, the only difference would be if your data had blanks in Table1[Invoice]. VALUES would return the blank, while DISTINCT would not return the blank.
  2. Consider the 2 possibilities:
(a) Let's say [Freight] does not equal zero, then [Freight]=0 returns FALSE. Then, when it calculates FALSE*0.02 the FALSE gets coerced into a zero, so we have 0*0.02 which returns zero. Then 1-0 returns 1. So it just multiplies the rest of the formula by 1 which does nothing. So you just end up with 3% of gross sales.

(b) Let's say [Freight] equals zero, then [Freight]=0 returns TRUE. Then, when it calculates TRUE*0.02 the TRUE gets coerced into a one, so we have 1*0.02 which returns 0.02. Then 1-0.02 returns 0.98. So it just multiplies the rest of the formula by 0.98. Since the order of multiplication doesn't matter, you can think of it like [Sales]*0.98*0.03. So you end up with 3% of 98% of gross sales.​
 
Upvote 0
  1. Yes, VALUES pretty much does the same thing that DISTINCT would do, the only difference would be if your data had blanks in Table1[Invoice]. VALUES would return the blank, while DISTINCT would not return the blank.
Actually, this does not apply to all blanks, only those that are missing values (unknown member) because of a referential integrity violation.
See the documentation on the VALUES function.
 
Upvote 0

Forum statistics

Threads
1,215,035
Messages
6,122,785
Members
449,095
Latest member
m_smith_solihull

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