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
dobregon
Impactful Individual
Impactful Individual

Measure of sum values from another table with relation of id and year

Hi,

 

I have a problem in the creation of measures from different tables and mixer them in the visual. As an example i have 2 tables (actuals and references) that both only can have a relation many to many (id).

 

  • Table actualsM1.JPG

     

  • Table ref
    M2.JPG

So, as you can see the table of actuals is in daly values and the ref in yearly values and related to the sames id

 

I want to create a measure in the table Actuals (because is where i have the majority of the measures and apart of that i want to create another measures using this new measure of ref annual value)

 

I know that I can use calculate to create a column in my actual table that takes the values from ref taking into account the id and year from both tables and then another measure from that new column in actuals. But i'm asking for a direct measure in actuals takt take values from the ref table.

Can someone help me on this?

 

Thanks in advance, regards!!!!



Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
1 ACCEPTED SOLUTION
Stachu
Community Champion
Community Champion

try something like this - there is a Calendar table as well that has a Year column with join on date with Actuals table

Measure =
CALCULATE (
    SUM ( 'Table ref'[ref_annual] ),
    TREATAS (
        SUMMARIZE ( 'Table actuals', 'Table actuals'[id], 'Calendar'[Year] ),
        'Table ref'[id],
        'Table ref'[year]
    )
)

Capture.PNG



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

View solution in original post

4 REPLIES 4
Stachu
Community Champion
Community Champion

I'm not clear on what you're trying to achieve exaclty (what you describe seems more like a calculated column, measures can be located in any table and will have exactly same result)
regardless, I'm guessing you will need to use TREATAS
https://www.sqlbi.com/articles/propagate-filters-using-treatas-in-dax/

 



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

dobregon
Impactful Individual
Impactful Individual

Thanks @Stachu for the response

 

I want to have a visual like this (picture below) using measures created in the table actuals

 

idyearactualref
120181973780000
22018593429000

 

So i have summarized the actuals only by year using a measure sum(actuals) and then another column with the measure of ref that take the correct ref by id and year.

I have tried to use your link creating a measure like

Ref value= 
CALCULATE(
    SUM(Ref[ref_annual]),
    TREATAS(
        SUMMARIZE(Ref,Ref[id],Ref[Year]),
        actual[id],
        actual[Year]
    )

and it is not working



Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
Stachu
Community Champion
Community Champion

try something like this - there is a Calendar table as well that has a Year column with join on date with Actuals table

Measure =
CALCULATE (
    SUM ( 'Table ref'[ref_annual] ),
    TREATAS (
        SUMMARIZE ( 'Table actuals', 'Table actuals'[id], 'Calendar'[Year] ),
        'Table ref'[id],
        'Table ref'[year]
    )
)

Capture.PNG



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

dobregon
Impactful Individual
Impactful Individual

yes, exactly i have tried this one minute ago and it works! thanks a lot. This is the solution!

 

Thanks!



Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)

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.