Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Sunkari
Responsive Resident
Responsive Resident

Changing metric dynamically in chart.

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. 

 

 

 

 

 

 

2 ACCEPTED SOLUTIONS
Sunkari
Responsive Resident
Responsive Resident

Parameter table is one approach I am aware of it. http://www.daxpatterns.com/parameter-table/

 

 

View solution in original post

Eric_Zhang
Employee
Employee


@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]
)

 

View solution in original post

2 REPLIES 2
Eric_Zhang
Employee
Employee


@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
Responsive Resident
Responsive Resident

Parameter table is one approach I am aware of it. http://www.daxpatterns.com/parameter-table/

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.