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]))
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
109 | |
62 | |
45 | |
28 | |
24 |
User | Count |
---|---|
134 | |
94 | |
78 | |
45 | |
38 |