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 am Trying to get the "Code" which has maximum quntity or most Stock Qty in the table and should get filtered based Entity.
Table name : 'This month''s Stock Out'
Stock Qty | Month | Code | Supplier | Entity |
2 | 10 | BLR | AB | G2 |
2 | 10 | APAG | BC | G1 |
2 | 10 | PIO67 | BC | G1 |
0 | 10 | G2 | ||
1 | 10 | TR28G | CZ | G1 |
i tried below code but dont get filtered on the Entity.
Solved! Go to Solution.
@insandur , First Create a measure with help from a separate month table joined with month of your table
this month = calculate(Sum(Table[Stock Qty]), filter(all(Month), Month[Month] = max(Month[Month] )) )
TOP1 Name= CALCULATE([this month], TOPN(2,ALLSELECTED('Table'[Code]), [this month ] ,DESC), values('Table'[Code]))
@insandur , First Create a measure with help from a separate month table joined with month of your table
this month = calculate(Sum(Table[Stock Qty]), filter(all(Month), Month[Month] = max(Month[Month] )) )
TOP1 Name= CALCULATE([this month], TOPN(2,ALLSELECTED('Table'[Code]), [this month ] ,DESC), values('Table'[Code]))
User | Count |
---|---|
15 | |
8 | |
6 | |
6 | |
6 |
User | Count |
---|---|
23 | |
14 | |
13 | |
8 | |
8 |