Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. 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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 40 | |
| 38 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 34 | |
| 33 | |
| 30 |