Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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]))
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 14 | |
| 5 | |
| 4 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 25 | |
| 10 | |
| 10 | |
| 6 | |
| 6 |