Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
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 All,
I have two tables. One is fact table which contains different metrics(Budget, SalesAmount) and another one is the static table which has a single column of metric names.
Here comes requirement,
1) Need to add slicer which contains metric names.
2) Bar chart which metric. By default, it will show the data for the budget. We should have the capability to change bar chart metric based on the slicer.
Please provide your best possible solution for this.
Solved! Go to Solution.
@Sunkari wrote:
Hi All,
I have two tables. One is fact table which contains different metrics(Budget, SalesAmount) and another one is the static table which has a single column of metric names.
Here comes requirement,
1) Need to add slicer which contains metric names.
2) Bar chart which metric. By default, it will show the data for the budget. We should have the capability to change bar chart metric based on the slicer.
Please provide your best possible solution for this.
I think a workaround can be using a measure like below. The table Metrics is the table containing measure names.
Measure =
IF (
ISFILTERED ( Metrics[Name] ),
SWITCH (
TRUE (),
LASTNONBLANK ( Metrics[Name], "" ) = "Measure1", [Measure1],
LASTNONBLANK ( Metrics[Name], "" ) = "Measure2", [Measure2],
[Other measure]
),
[A default measure]
)
@Sunkari wrote:
Hi All,
I have two tables. One is fact table which contains different metrics(Budget, SalesAmount) and another one is the static table which has a single column of metric names.
Here comes requirement,
1) Need to add slicer which contains metric names.
2) Bar chart which metric. By default, it will show the data for the budget. We should have the capability to change bar chart metric based on the slicer.
Please provide your best possible solution for this.
I think a workaround can be using a measure like below. The table Metrics is the table containing measure names.
Measure =
IF (
ISFILTERED ( Metrics[Name] ),
SWITCH (
TRUE (),
LASTNONBLANK ( Metrics[Name], "" ) = "Measure1", [Measure1],
LASTNONBLANK ( Metrics[Name], "" ) = "Measure2", [Measure2],
[Other measure]
),
[A default measure]
)
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 |
|---|---|
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |