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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.