The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have a matrix that shows me the sales for each week.
Now I would like to add a second column that shows me the best week/ the highest sales.
But how?
Hi @joshua1990 ,
The highest sales:
MAXX(FILTER(ALL(Table),[week]=SELECTEDVALUE([week])),[sales each week])
The best week:
CALCULATE(MAX([week]),FILTER(ALL(Table),[sales each week]=[highest sales]))
If I misunderstand your meaning, please show some sample data and expected result to us.
Best Regards,
Jay
Some example data and expected results would make this much easier to answer.
User | Count |
---|---|
25 | |
12 | |
8 | |
8 | |
7 |
User | Count |
---|---|
28 | |
13 | |
12 | |
12 | |
6 |