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
kressb
Helper V
Helper V

Issue with Measure Changing Dynamically in a Matrix

I have an issue with using a Measure dynamically in different tables. I haven't set it up correctly. Can someone please help correct?

There are 4 Tables - Key, Amounts, Base, DateDimension:

Relationships-Tester.png

I need to do a calculation where I take Amount / (Base *(1/12)) for each Unique ID. 

 

 

When I display the data in a Matrix with all possible Names included, it gives the correct result:

Calc =
     Var _Amount = sum(Amounts[Amounts])
     Return
     Divide (_Amount,[Var_Base]*(1/12),0)

Var _Base = Average(Base[Base])

 

 

However, if I decide I only want to display it so that only values with amounts are included, it dynamically reduces the Base and thus changes the Total Calc from 18.32 -> 18.37.

 

How can I either (a) hold the total base constant or (b) have the Total Calc add up the Rows rather than calculating dynamically?

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@kressb This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376

Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

@kressb This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376

Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Thanks @Greg_Deckler!

 

Result in case it helps anyone:

Calc2 =
    IF(

         HasOneFilter(Table[Name]),

 

          Var _Amount = sum(Amounts[Amounts])
          Var _Base = Average(Base[Base])
          Return
          Divide (_Amount,(_Base*(1/12)),0),
           

           Sumx(Table2[Calc])
           )

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.