Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi
Can someone please help me to achieve the "cumulative %" measure based on the current displayed data.
If possible please attached the Dax Code with an example.
Also please advise how to attached the .pbix file when raising a help request on this forum.
Thanks in advance
Mahad
Solved! Go to Solution.
Cumul % =
var cr = sum('Sales Table'[Qty])
var s = summarize(allselected('Sales Table'),'Sales Table'[Store],"q",sum('Sales Table'[Qty]))
var t = filter(s,[q]>=cr)
return divide(sumx(t,[q]),sumx(s,[q]))
Note that you have ties in your data so the result is a bit ugly.
Hi,
Share the link from where i can download your PBI file. You may upload the file to Google Drive/One Drive or any such similar service and share the download link.
Please provide sanitized sample data that fully covers your issue. I cannot help you without usable sample data.
Please paste the data into a table in your post or use one of the file services like OneDrive or Google Drive. I cannot use screenshots of your source data.
Please show the expected outcome based on the sample data you provided. Screenshots of the expected outcome are ok.
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523
Dear Ibendlin
Thank you for your response. I'm expecting the result as below.
Appreciate your help on this.
Thanks
Mahad
Please provide usable sanitized sample data that fully covers your issue.
Dear Ibendlin
Below are the "sales table" and "store master table"
Please provide sanitized sample data that fully covers your issue. I cannot help you without usable sample data.
Please paste the data into a table in your post or use one of the file services like OneDrive or Google Drive. I cannot use screenshots of your source data.
Dear Ibendlin
PFB the google drive link for the sample data.
https://drive.google.com/file/d/1fhIvmngE2KiN90G-5vBuJiuPY4iT-wCI/view?usp=drive_web
Thanks
Mahad
Hi, @Anonymous
Please try formulas like below:
calculated column:
Qty = CALCULATE(SUM('Sales Table'[Qty]),FILTER('Sales Table','Sales Table'[Store]=StoreMaster_Table[Store]))
Rank_store = RANKX(StoreMaster_Table,StoreMaster_Table[store],,ASC,Dense)
Rank_qty = RANKX(StoreMaster_Table,StoreMaster_Table[Qty],,DESC,Dense)
count_rows = CALCULATE(COUNTROWS(StoreMaster_Table),ALL(StoreMaster_Table))
Rank = RANKX(StoreMaster_Table,StoreMaster_Table[Rank_qty]+StoreMaster_Table[Rank_store]/StoreMaster_Table[count_rows],,ASC,Dense)
Measure:
Qty% =
VAR cumulative =
CALCULATE (
SUM ( StoreMaster_Table[Qty] ),
FILTER (
ALLSELECTED ( StoreMaster_Table ),
StoreMaster_Table[Rank] <= MAX ( StoreMaster_Table[Rank] )
)
)
VAR total =
CALCULATE ( SUM ( StoreMaster_Table[Qty] ), ALLSELECTED ( StoreMaster_Table ) )
RETURN
cumulative / total
Best Regards,
Community Support Team _ Eason
Dear Eason
Thank you so much for your time and help.
The DAX code works perfectly fine, but they are not dynamic.
My real time reports have huge data and I have the area and region as well.
1. This report has restricted area and region wise to display only data of the access granted.
2. Also we will view the report for monthly, quartely, and annualy.
The ranking should change dynamically according to selection.
The currently DAX code we have maintained the data in the column and hence we are getting wrong value when we filter the data.
Appreciate your help to get the above results.
Thanks
Mahad
Cumul % =
var cr = sum('Sales Table'[Qty])
var s = summarize(allselected('Sales Table'),'Sales Table'[Store],"q",sum('Sales Table'[Qty]))
var t = filter(s,[q]>=cr)
return divide(sumx(t,[q]),sumx(s,[q]))
Note that you have ties in your data so the result is a bit ugly.
User | Count |
---|---|
141 | |
70 | |
70 | |
53 | |
52 |
User | Count |
---|---|
208 | |
94 | |
64 | |
60 | |
57 |