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
NithinBN
Helper II
Helper II

Query between 2 Tables.

Hello All, 

 

I have2 tables like this, 

NithinBN_0-1698083824344.pngNithinBN_1-1698083842205.png

 

I want to list the distinct count of ID, when its, Col-A = 1 and (corrosponding Col-B values in other table is not H),

Here in this example i want to count 103,104,106 and 104 and return 4 as value (rejecting 100, 101, 105 as 500 and 508 has value H )

1 ACCEPTED SOLUTION
tackytechtom
Super User
Super User

Hi @NithinBN ,

 

I'd probably start with a calculated column in the first table:

tackytechtom_0-1698094937074.png

ColLvlLookup = 
CALCULATE ( MAX(Table2[lvl]), FILTER ( Table2, Table1[col-B] = Table2[Col-B] ) ) 

 

And then you can add a measure:

tackytechtom_1-1698095008644.png

Measure = 
VAR _helpTable =
SUMMARIZE ( 
    FILTER ( Table1, Table1[ColLvlLookup] = "H" ),
    Table1[ID]
)
RETURN
CALCULATE ( DISTINCTCOUNT ( Table1[ID] ), Table1[col-A] = 1, NOT Table1[ID] IN (_helpTable) )

 

You could also write the two code bits together in one measure as well:

Measure 2 = 
VAR _helpTable =
SUMMARIZE ( 
    FILTER ( Table1, CALCULATE ( MAX(Table2[lvl]), FILTER ( Table2, Table1[col-B] = Table2[Col-B] ) )  = "H" ),
    Table1[ID]
)
RETURN
CALCULATE ( DISTINCTCOUNT ( Table1[ID] ), Table1[col-A] = 1, NOT Table1[ID] IN (_helpTable) )


Hope this helps! 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

View solution in original post

1 REPLY 1
tackytechtom
Super User
Super User

Hi @NithinBN ,

 

I'd probably start with a calculated column in the first table:

tackytechtom_0-1698094937074.png

ColLvlLookup = 
CALCULATE ( MAX(Table2[lvl]), FILTER ( Table2, Table1[col-B] = Table2[Col-B] ) ) 

 

And then you can add a measure:

tackytechtom_1-1698095008644.png

Measure = 
VAR _helpTable =
SUMMARIZE ( 
    FILTER ( Table1, Table1[ColLvlLookup] = "H" ),
    Table1[ID]
)
RETURN
CALCULATE ( DISTINCTCOUNT ( Table1[ID] ), Table1[col-A] = 1, NOT Table1[ID] IN (_helpTable) )

 

You could also write the two code bits together in one measure as well:

Measure 2 = 
VAR _helpTable =
SUMMARIZE ( 
    FILTER ( Table1, CALCULATE ( MAX(Table2[lvl]), FILTER ( Table2, Table1[col-B] = Table2[Col-B] ) )  = "H" ),
    Table1[ID]
)
RETURN
CALCULATE ( DISTINCTCOUNT ( Table1[ID] ), Table1[col-A] = 1, NOT Table1[ID] IN (_helpTable) )


Hope this helps! 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

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.