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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
CoreyL
Frequent Visitor

calculating two measures

Hi, I have a measure  e.g. measuresTable[Pool_Total] which calculates sales for a country. the result is something like 1743.49

 

here's measure:

 

Pool_Total = 

CALCULATE (

  SUMX (

    FILTER(

      salesTable,

       salesTable[Country] = "US"

    ),

    salesTable[AmountItem]

  )

  * .01

)

 

 

I also have a measure in a different visual where I assign a percentage e.g. myTable[Pct]

here's the measure:

 

Pct = DIVIDE(SUM(myTable[rank]), 100)

 

An example value for this is:  0.02

 

I'm trying to sum the results of the two measures and display in a column e.g. shareValue.

here's the column:

 

shareValue = myTable[Pool_Total] * [Pct]

 

the result is 2.00 unlike what I expect  e.g. 1743.49 * 0.02 = 34.87

 

Can somepone point me to a possible fix, I think I misunderstand the complexity involved in the calculation.

 

thank you !

 

 

 

4 REPLIES 4
amitchandak
Super User
Super User

@CoreyL 

Multiplication should ideally be sum(A*B)

From multiple tables, it needs a row context, preferably a common dimension

 

sum(summarize(Dimension,Dimension[Name],"_1",[Pool_Total],"_2", [Pct]),[_1]*[_2])

Refer: the importance of row context : https://community.powerbi.com/t5/Community-Blog/Decoding-Direct-Query-in-Power-BI-Part-2-Date-Differ...

 

 if you need more help make me @

Appreciate your Kudos.

 

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here
Ashish_Mathur
Super User
Super User

Hi,

Share the link from where i can download your PBI file and clearly show the problem there.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi, thanks for response. I was able to get a demo working, I will provide it here for benefit of community. thanks again!

 

kentyler
Solution Sage
Solution Sage

Is there a relationship between myTable and salesTable ?

the two measures may be executing in a different context

it looks like Pool_total is operating in a row that has an item defined... are there different items that all have different totals ?

without knowing how salesTable relates to myTable it's hard to say much

could you post and past in some sample data for both tables ?





Did this post answer your question? Mark it as a solution so others can find it!

Help when you know. Ask when you don't!




Join the conversation at We Talk BI find out more about me at Slow BI


Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.