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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
KrisIsLearning
Frequent Visitor

Filtering data in DAX with a related table

I know how to do it with M but want to get more into DAX syntax but I need a few hints from the community.

 

I've got 2 tables set up:

 

KnownRubrics

RubriekCondition

aardok
wgnrnok
testok

 

and Reports:

IdRubriek

1aard
1wgnr
1bla
2aard

 

I created already several quick measures like the following:

 
Count of Rubriek for ok =
CALCULATE(
    COUNTA('Reports'[Rubriek]),
    'KnownRubrics'[Condition] IN { "ok" }
)
 
and 
 
List of Rubriek values =

        CONCATENATEX(
            VALUES('Reports'[Rubriek]),
            'Reports'[Rubriek],
            ", ",
            'Reports'[Rubriek],
            ASC
        )
 
 
What I'm after is 3 columns that give me the concatenated string when in the related table it's an ok and another table with all the concatenated text when it's nok. Also another one when there's no corresponding value in the KnownRubrics table.
 
Expected result:
 
IdCountOkCountNokCountUnknownListOkListNokListUnknown
1111aardwgnrbla
2100aard  
1 ACCEPTED SOLUTION
KrisIsLearning
Frequent Visitor

I'm getting into the correct direction:

 

        CONCATENATEX(
            FILTER(
                'Reports',
                'Reports'[Rubriek] = RELATED(KnownRubrics[Rubriek])
            )
            ,
            'Reports'[Rubriek],
            ", ",
            'Reports'[Rubriek],
            ASC
        )

View solution in original post

3 REPLIES 3
KrisIsLearning
Frequent Visitor

I'm getting into the correct direction:

 

        CONCATENATEX(
            FILTER(
                'Reports',
                'Reports'[Rubriek] = RELATED(KnownRubrics[Rubriek])
            )
            ,
            'Reports'[Rubriek],
            ", ",
            'Reports'[Rubriek],
            ASC
        )
FreemanZ
Super User
Super User

hi @KrisIsLearning ,

 

could you provide the expected result as a table as well?

I updated the original post.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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