Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I want to use a measure to extract a middle price at Qty wise, and respond to the filters (Year, sales area etc.)
below is a summary table:
Price Sum of Resale Qty % of Accu. Resale Qty/Grand Total
0.50 849,305 16.5%
0.56 835,188 32.7%
0.59 315,704 38.8%
0.60 152,779 41.8%
0.61 248,481 46.6%
0.70 932,176 64.6%
0.77 572,559 75.8%
0.80 669,245 88.7%
0.81 581,025 100.0%
0.7 is the price i want to have.
I am now using a stupid and not interactive way to extract this info:
Please please help!
Thank you in advance!
Regards
Nate
Solved! Go to Solution.
Hi @xuexi1890 ,
You can create measures like DAX below.
% of Accu. Resale Qty/Grand Total = CALCULATE(DIVIDE(SUM('Table'[Sum of Resale Qty]),CALCULATE(SUM('Table'[Sum of Resale Qty]),ALL('Table'))),FILTER(ALLSELECTED('Table'),'Table'[Price]<=MAX('Table'[Price]))) Middle number Qty = CALCULATE(MIN('Table'[Price]),FILTER(ALLSELECTED('Table'),'Table'[% of Accu. Resale Qty/Grand Total]>=0.5))
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @xuexi1890 ,
You can create measures like DAX below.
% of Accu. Resale Qty/Grand Total = CALCULATE(DIVIDE(SUM('Table'[Sum of Resale Qty]),CALCULATE(SUM('Table'[Sum of Resale Qty]),ALL('Table'))),FILTER(ALLSELECTED('Table'),'Table'[Price]<=MAX('Table'[Price]))) Middle number Qty = CALCULATE(MIN('Table'[Price]),FILTER(ALLSELECTED('Table'),'Table'[% of Accu. Resale Qty/Grand Total]>=0.5))
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
User | Count |
---|---|
75 | |
75 | |
45 | |
31 | |
27 |
User | Count |
---|---|
99 | |
89 | |
52 | |
48 | |
46 |