This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi Team
I have a model where i have Dim Market, Dim Brand and Fact Sales.
Market ID of Dim Market is connected to Market ID of Fact Sales
Brand ID of Dim Brand is connected to Brand ID of Fact Sales
We have a brand named "Kingfisher" in the Dim Brand
I need to create a measure with below logic:
Based on the slicer selection, I want the count of markets where the brand "Kingfisher" is coming on top 5 for a measure named Sales
In Short:
Solved! Go to Solution.
Please try the measure below:
Kingfisher Top 5 Markets =
COUNTROWS (
FILTER (
VALUES ( 'Dim Market'[MarketID] ),
VAR _KingfisherSales =
CALCULATE (
[Sales],
'Dim Brand'[Brand] = "Kingfisher"
)
VAR _Rank =
RANKX (
ALLSELECTED ( 'Dim Brand'[Brand] ),
CALCULATE ( [Sales] ),
_KingfisherSales,
DESC,
Dense
)
RETURN
_Rank <= 5
)
)
Please try the measure below:
Kingfisher Top 5 Markets =
COUNTROWS (
FILTER (
VALUES ( 'Dim Market'[MarketID] ),
VAR _KingfisherSales =
CALCULATE (
[Sales],
'Dim Brand'[Brand] = "Kingfisher"
)
VAR _Rank =
RANKX (
ALLSELECTED ( 'Dim Brand'[Brand] ),
CALCULATE ( [Sales] ),
_KingfisherSales,
DESC,
Dense
)
RETURN
_Rank <= 5
)
)
I think you can use
Num markets Kingfisher Top 5 =
VAR MarketsAndBrands =
ADDCOLUMNS (
CALCULATETABLE (
SUMMARIZE ( Sales, Market[Market], Brand[Name] ),
ALLSELECTED ()
),
"@sales", [Sales]
)
VAR Top5 =
WINDOW (
1,
ABS,
5,
ABS,
MarketsAndBrands,
ORDERBY ( [@sales], DESC ),
PARTITIONBY ( Market[Market] )
)
VAR Result =
COUNTROWS ( FILTER ( Top5, Brand[Name] = "Kingfisher" ) )
RETURN
Result
Hi John,
Thanks for the quick help,
I am getting error in the above measure that the column Market[Market] specified in the 'SUMMARIZE' function was not found in the input table
Change both references to Market[Market] to whichever column from your market dimension uniquely identifies a row. e.g. you could use Market[Market ID].
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 5 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 14 | |
| 8 | |
| 7 | |
| 6 | |
| 6 |