Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
Beehive
Frequent Visitor

Column totals sumx and Hasonefilter in DAX

Hi All,

 

I have researched the solution on different threads to calculate the correct answer for summing columns that include a row of calculated measures but continue to get an error with the Filter in Sumx as follows.  Can someone please assist?

 

 

Price variance Amount CY LY = if(HASONEFILTER

(viewAllSalesTransactions[ItemName]), if(calculate([Total Sales LY])>0,(CALCULATE([Average Sales Price CY])-CALCULATE([Average Sales Price LY]))*CALCULATE([Total Quantity CY]),0),

 

sumx( FILTER('viewAllSalesTransactions','viewAllSalesTransactions'[Total Sales LY] > 0,('viewAllSalesTransactions'[Average Sales Price CY]-'viewAllSalesTransactions'[Average Sales Price LY])*'viewAllSalesTransactions'[Total Quantity CY])))

 

Error message:

Too many arguments were passed to the FILTER function. The maximum argument count for the function is 2.

1 ACCEPTED SOLUTION

Hi,

 

Try this

 

=SUMX(FILTER(SUMMARIZE(VALUES(Data[Product]),[Product],"ABCD",[Average Sales Price CY],"EFGH",[Average Sales Price LY]),[EFGH]>0),([ABCD]-[EFGH])*[Total Quantity CY])

 

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

 

Share a dataset and also show the expected result.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

I hope the following makes sense.  The expected outcome is in red text, however, without the Sumx the measure will calculate 35 for the column total ie. (13.33 - 11) * 15 = 35

 

1CDEFGHIJKL
2 Total Sale CYTotal Sales LYSales Amount Variance CY LYAverage Sales Price CYAverage Sales Price LYPrice Variance Amount CY LY Price Variance Amount CY LY (Formula)Total Quantity CYTotal Quantity LY
3Product A100110-101011-10=IF(H7>0,+(G7-H7)*K7,0)1010
4Product B100 1002000=IF(H8>0,+(g8-h8)*K8,0)50
5Total20011090        13.33        11.00-10 1510

Hi,

 

Try this

 

=SUMX(FILTER(SUMMARIZE(VALUES(Data[Product]),[Product],"ABCD",[Average Sales Price CY],"EFGH",[Average Sales Price LY]),[EFGH]>0),([ABCD]-[EFGH])*[Total Quantity CY])

 

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.