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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
KIL2022
Regular Visitor

Ideas for Calculations

Hello,

 

im Lookig for folling sollution

KIL2022_0-1701370948120.png

Example data for first Customer

Z0Z1CostumerItemDateQty
EE-NordAArtikel 123428.093
EE-NordAArtikel 123402.1010
EE-NordAArtikel 432118.092


If I switch the calculation to "Continuous", i.e. for Artikle 4321, although there were no entries in period 01.11, 01.12, etc., I assume that the Qty remains equal to 2, everything is also calculated correctly.

KIL2022_1-1701371178836.png


However, if I drill up to Customer or Z1, the values are not added correctly.

KIL2022_2-1701371441004.png

I also know why, because I don't add up the values beforehand, but calculate them using the formula MAXX

CALCULATE(MAXX(FILTER(MockUPDATEN.....

I try it via the sums, with: 
CALCULATE(SUM(MockUPDATEN[Test2])....
It does not pull in the MAXX data per Item, but all data, here:
Correct for Customer A and 01.11 - 10+2 = 12
Here: 10+3+2 =15
KIL2022_3-1701371612022.png

 

I'm at a loss as to how I can solve it, i.e. get the correct summation...
In principle, I would like to
Sum(Grupby (ITEM, Maxx(Date))

Thanks



 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @KIL2022 ,

 

According to your description, here are my steps you can follow as a solution.

(1) This is my test data. 

vtangjiemsft_0-1701682491909.png

(2) We can create a table.

Table 2 = VALUES('Table'[Date])

(3) We can create measures.

Measure = 
var _a= MAXX(FILTER(ALL('Table 2'),'Table 2'[Date]<MAX('Table 2'[Date])),[Date])
var _b=CALCULATE(SUM('Table'[Qty]),FILTER(ALL('Table'), 'Table'[Z0]=MAX('Table'[Z0]) && 'Table'[Z1]=MAX('Table'[Z1]) && 'Table'[Costumer]=MAX('Table'[Costumer]) && 'Table'[Item]=MAX('Table'[Item]) && [Date]=_a ))
var _c=CALCULATE(SUM('Table'[Qty]),FILTER(ALL('Table'), 'Table'[Z0]=MAX('Table'[Z0]) && 'Table'[Z1]=MAX('Table'[Z1]) && 'Table'[Costumer]=MAX('Table'[Costumer]) && 'Table'[Item]=MAX('Table'[Item]) && [Date]=MAX('Table 2'[Date] )))
return IF(_c=BLANK(),_b,_c)
Measure 2 = IF(ISINSCOPE('Table'[Costumer]),SUMX(VALUES('Table'[Item]),[Measure]))

(4) Then the result is as follows.

vtangjiemsft_1-1701682619647.pngvtangjiemsft_2-1701682653169.png

 

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

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

2 REPLIES 2
Anonymous
Not applicable

Hi @KIL2022 ,

 

According to your description, here are my steps you can follow as a solution.

(1) This is my test data. 

vtangjiemsft_0-1701682491909.png

(2) We can create a table.

Table 2 = VALUES('Table'[Date])

(3) We can create measures.

Measure = 
var _a= MAXX(FILTER(ALL('Table 2'),'Table 2'[Date]<MAX('Table 2'[Date])),[Date])
var _b=CALCULATE(SUM('Table'[Qty]),FILTER(ALL('Table'), 'Table'[Z0]=MAX('Table'[Z0]) && 'Table'[Z1]=MAX('Table'[Z1]) && 'Table'[Costumer]=MAX('Table'[Costumer]) && 'Table'[Item]=MAX('Table'[Item]) && [Date]=_a ))
var _c=CALCULATE(SUM('Table'[Qty]),FILTER(ALL('Table'), 'Table'[Z0]=MAX('Table'[Z0]) && 'Table'[Z1]=MAX('Table'[Z1]) && 'Table'[Costumer]=MAX('Table'[Costumer]) && 'Table'[Item]=MAX('Table'[Item]) && [Date]=MAX('Table 2'[Date] )))
return IF(_c=BLANK(),_b,_c)
Measure 2 = IF(ISINSCOPE('Table'[Costumer]),SUMX(VALUES('Table'[Item]),[Measure]))

(4) Then the result is as follows.

vtangjiemsft_1-1701682619647.pngvtangjiemsft_2-1701682653169.png

 

 

If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

 

Best Regards,

Neeko Tang

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

lbendlin
Super User
Super User

There is a GROUPBY function that you could use for this

 

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).

Do not include sensitive information or anything not related to the issue or question.

If you are unsure how to upload data please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...

Please show the expected outcome based on the sample data you provided.

Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.