Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Currently, am working on the report server and am collecting data on cumulative bases which mean every district report it cumulative performances. My database has three different tables one for the performance, one for the date and the other Is for the district. So that my power bi takes the sum of the aggregate of all district under a region. But I need an aggregate of last value from each district summed up, instead of all the value under a district. How can I do that?
Hi @wesen
Please, can you share some data sample? Also, you can read this article it will help you to get questions answered faster.
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
@Mariusz thanks for your quick response and I don't know how much I am clear. I tried to depict it here.
Here is some description of the problem that I mentioned before.
Hi @wesen
The attached file, let me know if it works for you.
Hi @wesen
The below will fix the total.
Value 2 = SUMX( GROUPBY( 'Table 1', 'Table 1'[District Name], 'Table 1'[country Name] ), CALCULATE( SUM( 'Table 1'[Value] ), LASTDATE( 'Table 2'[Entry_Date] ) ) )
@Mariusz It works for imported mode and thanks to you. But am using direct query mode(In power bi server) in which I'm unable to get DAX for GROUP BY AND LAST DATE. Can you suggest me any other solution?
Thanks a lot,
Hi @wesen
Unfortunately, I'm not familiar with PIRS, I tried to find DAX functions supported and there is not much around.
The below is using SUMMARIZE instead of GROUPBY and MAX Instead LASTDATE, check if thats any better.
Value 3 = VAR _tbl = ADDCOLUMNS( SUMMARIZE( 'Table 1', 'Table 1'[District Name], 'Table 1'[country Name] ), "Max Date", CALCULATE( MAX( 'Table 2'[Entry_Date] ) ) ) RETURN CALCULATE( SUM( 'Table 1'[Value] ), TREATAS( _tbl, 'Table 1'[District Name], 'Table 1'[country Name], 'Table 2'[Entry_Date] ) )
Hi@Mariusz
I attached a link to the file. Can you share it with someone who is an expert in power bi report server
Sample data from direct quire mode
Thank you for your support,
Much Appreciate
Thank you.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
87 | |
76 | |
74 | |
55 | |
45 |
User | Count |
---|---|
117 | |
105 | |
77 | |
66 | |
64 |