Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
1 year ago
Solved

Display Subtotal Column Based on Another Column's Values in Power BI

Hi everyone,   Sorry for re-posting but I'm pretty desperate about this issue ðŸ˜“   I hope you can help me with this issue. I appreciate it!!!    Context: You can see from the attached image bel...
  • SamWiseOwl's avatar
    1 year ago

    Hi Anonymous 

    I am probably misunderstanding but why not reference your existing measure in the total?

        IF(
           not( ISINSCOPE(financial_percentage[Metric]))
           ,      [USG_Global]
            ,           CALCULATE (
                SELECTEDVALUE ( financial_percentage[Metric Value] ),
                FILTER ( ALL ( dim_region ), dim_region[region_name] = "Global" )
            )

        )