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
Gekko1
Helper I
Helper I

Incorrect Totals

My problem is as it follows: I have 2 tables, the first one has the amount of products per date and the company ID from where that product is; the second one has the company ID and the company name. In order to calculate the amount of products  that each company have in the last date of the selected month I wrote the Dax code as shown below:

AMOUNT = CALCULATE(SUM(ProductTable[AvailableAmount]),FILTER(ProductTable,ProductTable[EventDate]=MAX(ProductTable[EventDate])))

The tables have the format shown below:
Gekko1_0-1664371415673.png


When I put the Company Name as a row header in a matrix visual I am getting the wrong total. I've already tried the SUMMARIZE+SUMX, the IF+HASONFILTER and the SUMX methods but none of these actually worked. The DAX code of my attempts are listed below:

ATTEMPT1= SUMX(CompanyTable,CALCULATE(SUM(ProductTable[AvailableAmount]),FILTER(ProductTable,ProductTable[EventDate]=MAX(ProductTable[EventDate]))))

ATTEMPT2= 
VAR X = 
CALCULATE(SUM(ProductTable[AvailableAmount]),FILTER(ProductTable,ProductTable[EventDate]=MAX(ProductTable[EventDate]))))
RETURN
SUMX(SUMMARIZE(CompanyTable,CompanyTable[CompanyName]),X)

ATTEMPT3= 
VAR X =CALCULATE(SUM(ProductTable[AvailableAmount]),FILTER(ProductTable,ProductTable[EventDate]=MAX(ProductTable[EventDate]))))
RETURN
IF(HASONEFILTER(
CompanyTable[CompanyName]),X,SUMX(CompanyTable,X))
 
1 ACCEPTED SOLUTION
v-yadongf-msft
Community Support
Community Support

Hi @Gekko1 ,

 

If your goal is to calculate the amount of products  that each company have in the last date of the selected month, please try following steps:

 

This is my test table:

vyadongfmsft_0-1664435940151.png

 

vyadongfmsft_3-1664436337140.png

 

Create a new column:

Month = FORMAT([Date],"mmmm")

vyadongfmsft_1-1664435998093.png

 

Try following measure:

Measure = CALCULATE(
    SUM('Table'[Amount]),
        FILTER('Table','Table'[Month] = SELECTEDVALUE('Table'[Month]) && 
                        'Table'[Company ID] = SELECTEDVALUE('Table'[Company ID]) && 
                        'Table'[Date] = MAX('Table'[Date]))
                     )

 

Is this the result you want?

vyadongfmsft_2-1664436228621.png

 

Best regards,

Yadong Fang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yadongf-msft
Community Support
Community Support

Hi @Gekko1 ,

 

If your goal is to calculate the amount of products  that each company have in the last date of the selected month, please try following steps:

 

This is my test table:

vyadongfmsft_0-1664435940151.png

 

vyadongfmsft_3-1664436337140.png

 

Create a new column:

Month = FORMAT([Date],"mmmm")

vyadongfmsft_1-1664435998093.png

 

Try following measure:

Measure = CALCULATE(
    SUM('Table'[Amount]),
        FILTER('Table','Table'[Month] = SELECTEDVALUE('Table'[Month]) && 
                        'Table'[Company ID] = SELECTEDVALUE('Table'[Company ID]) && 
                        'Table'[Date] = MAX('Table'[Date]))
                     )

 

Is this the result you want?

vyadongfmsft_2-1664436228621.png

 

Best regards,

Yadong Fang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.

Top Solution Authors