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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Anonymous
Not applicable

Creating a Measure with dynamic computation depending on another column's value

I am trying to create a matrix in the following format, where the values is just 1 measure (computed from Volume column).

Expected result:

slfollosco_0-1690358550625.png

Sample data:

slfollosco_1-1690358679597.png

 

This is the code I came up with. The three columns, Beginning Inventory, Volume Received, and Variance, KL, all work as expected. But the Variance % does not show any values < variance % = _variance / (_begINV + volRCV) >. I believe this is due to the filters applied in the first 3 variables that interferes with the last variable. I would like to know if there is a way to revise my code to achieve this or should I just create 3 measures?

 

 

In-Plant Volume = 
VAR _begINV = 
    CALCULATE(
        SUM('Terminal In-Plant Performance'[Volume]),
        'Terminal In-Plant Performance'[Attribute] = "Beginning Inventory, KL",
        'Calendar'[Date] = MIN('Calendar'[Date])
    )
VAR _volRCV = 
    CALCULATE(
        SUM('Terminal In-Plant Performance'[Volume]),
       'Terminal In-Plant Performance'[Attribute] = "Volume Received, KL"
    )
VAR _variance = 
    CALCULATE(
        SUM('Terminal In-Plant Performance'[Volume]),
        'Terminal In-Plant Performance'[Attribute] = "Variance, KL"
    )

RETURN  
SWITCH(
    SELECTEDVALUE('Terminal In-Plant Performance'[Attribute]),
    "Beginning Inventory, KL",
    _begINV,
    "Variance, KL",
    _variance,
    "Volume Received, KL",
    _volRCV,
    "Variance (%)",
    FORMAT(
        DIVIDE(
            FILTER(ALL('Terminal In-Plant Performance'[Attribute]),_variance),
            FILTER(ALL('Terminal In-Plant Performance'[Attribute]),_begINV) + FILTER(ALL('Terminal In-Plant Performance'[Attribute]),_volRCV),
            "-"
        ),
        "Percent"
    ),
    SUM('Terminal In-Plant Performance'[Volume])
)

 

 

 

 

2 REPLIES 2
amitchandak
Super User
Super User

@Anonymous , Try like

 

calculate(
DIVIDE(
_variance,
_begINV + _volRCV
), REMOVEFILTERS('Terminal In-Plant Performance'[Attribute]))

 

 

For formattin refer dynamic string formatting

https://powerbi.microsoft.com/en-us/blog/deep-dive-into-the-new-dynamic-format-strings-for-measures/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

I tried this. Unfortunately, it didn't work. the whole Variance % column did not show up. the rest of the columns worked perfectly fine.

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.