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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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