Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Solved! Go to Solution.
Try the following
1. Create table called as Measure with column names - MeasureId, MeasureName
Eg : Row 1 - 1, Quantity
Row 2 - 1, Value
Create as many rows as you want depending on the number of measures you wish to alternate.
2. Create table called TopTable as follows :
TopTable =
Union (
TOPN (10, SUMMARIZE('Product',[Item],"Qty",sum('Product'[StockAvailable]),"Value",0),[Qty],DESC ),
TOPN (10, SUMMARIZE('Product',[Item],"Qty",0,"Value",sum('Product'[StockValue])),[Value],DESC )
)
This is creating a table with columns Item, Sum(StockQty), sum(StockValue) from the Product table. Replace your fact table names accordingly.
3. Create measure ShowMeasure as
ShowMeasure = switch (TRUE,
Min ( 'Measure'[MeasureID] ) = 1,
SUM(TopTable[Qty] ),
Min ( 'Measure'[MeasureID] ) = 2,
SUM ( TopTable[Value] ))
4. Create a Filter using the MeasureName at Step 1.
5. Create a report using Item from TopTable and ShowMeasure and in the filters for the report for ShowMeasure set not equal to zero.
6. This will work.
Output when select Value
If this works for you please accept it as solution and also give KUDOS.
Cheers
CheenuSIng
Try the following
1. Create table called as Measure with column names - MeasureId, MeasureName
Eg : Row 1 - 1, Quantity
Row 2 - 1, Value
Create as many rows as you want depending on the number of measures you wish to alternate.
2. Create table called TopTable as follows :
TopTable =
Union (
TOPN (10, SUMMARIZE('Product',[Item],"Qty",sum('Product'[StockAvailable]),"Value",0),[Qty],DESC ),
TOPN (10, SUMMARIZE('Product',[Item],"Qty",0,"Value",sum('Product'[StockValue])),[Value],DESC )
)
This is creating a table with columns Item, Sum(StockQty), sum(StockValue) from the Product table. Replace your fact table names accordingly.
3. Create measure ShowMeasure as
ShowMeasure = switch (TRUE,
Min ( 'Measure'[MeasureID] ) = 1,
SUM(TopTable[Qty] ),
Min ( 'Measure'[MeasureID] ) = 2,
SUM ( TopTable[Value] ))
4. Create a Filter using the MeasureName at Step 1.
5. Create a report using Item from TopTable and ShowMeasure and in the filters for the report for ShowMeasure set not equal to zero.
6. This will work.
Output when select Value
If this works for you please accept it as solution and also give KUDOS.
Cheers
CheenuSIng
can you please share the pbix file
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 |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 32 | |
| 27 | |
| 26 |