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
NicolasHTR
Frequent Visitor

Summarize with userelationship

Dear all,

 

I have the following table:

 

NicolasHTR_0-1674498829184.png

The columns "Data Horas" and "Data Saldo" both have a relationship with a separate Calendar Table.

 

I want to have a summarized table with the sum of "Horas" on "Data Horas" and "Saldo Real" on "Data Saldo" for each "RES ID" and Date.

 

But for some reason, the sum of "Saldo Real" doesn't show up:

 

NicolasHTR_2-1674499589096.png

 

 

I tried the following code:

 

Availability =
    SUMMARIZE('Down History','Date'[Date],'Down History'[Res ID],"__Horas",CALCULATE(SUM('Down History'[Horas]),USERELATIONSHIP('Date'[Date],'Down History'[Data Horas])),"__Saldo Horas",CALCULATE(SUM('Down History'[Saldo Real]),USERELATIONSHIP('Date'[Date],'Down History'[Data Saldo])))
 
Can someone give me some help?
 
Thank you!!
1 REPLY 1
amitchandak
Super User
Super User

@NicolasHTR , Try like

Availability =
Addcolumns( SUMMARIZE('Down History','Date'[Date],'Down History'[Res ID],) ,"__Horas",CALCULATE(SUM('Down History'[Horas]),Filter('Down History', 'Date'[Date],'Down History'[Data Horas])),"__Saldo Horas",CALCULATE(SUM('Down History'[Saldo Real]),filter('Down History','Date'[Date],'Down History'[Data Saldo])))

 

But this approach will miss the dates not avaiable because of default join

 

Try to use summarize columns

 

Availability =
SUMMARIZECOLUMNS('Date'[Date],'Down History'[Res ID],"__Horas",CALCULATE(SUM('Down History'[Horas]),USERELATIONSHIP('Date'[Date],'Down History'[Data Horas])),"__Saldo Horas",CALCULATE(SUM('Down History'[Saldo Real]),USERELATIONSHIP('Date'[Date],'Down History'[Data Saldo])))

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.