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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

one to many relationship count records that are not in the second table

Hi community experts, I have two tables, T1 and T2 with a relatinship one-to-many. Something like this

Table 1

IDAttribute
10.5
21
31
40.8
50.8

 

Table 2

IDField2
1 
1 
1 
3 
3 
5 
5 

Now, my relationship is based on the ID field. I also have a measure that sums the Attribute in Table 1.

 

How can I use this measure saying something like: Calculate(sum(Table1[Attribute]); Table2[ID] = blank()) which does not work.

I'd like to calculate that measures, to see how much the sum would be for the records that do not have any correspondent in Table2.

Any idea?

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

Hi @Anonymous ,

You can use expect function to compare and extract nonexistent records from two tables:

Measure =
VAR _list =
    EXCEPT ( VALUES ( Table1[ID] ), VALUES ( Table2[ID] ) )
RETURN
    CALCULATE (
        SUM ( Table[Attribute] ),
        FILTER ( ALLSELECTED ( Table1 ), [ID] IN _list )
    )

Regards,

Xiaoxin Sheng

View solution in original post

Anonymous
Not applicable

Thanks, it helps!

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

You can use expect function to compare and extract nonexistent records from two tables:

Measure =
VAR _list =
    EXCEPT ( VALUES ( Table1[ID] ), VALUES ( Table2[ID] ) )
RETURN
    CALCULATE (
        SUM ( Table[Attribute] ),
        FILTER ( ALLSELECTED ( Table1 ), [ID] IN _list )
    )

Regards,

Xiaoxin Sheng

Anonymous
Not applicable

Thanks, it helps!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors