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

How to countrow with multiple values

I have this:

WO with Code TF1 = COUNTROWS(
FILTER(
WORK_ORDER, CONTAINS(RELATEDTABLE(EQUIPMENT), EQUIPMENT[EQUIPMENT_CATEGORY_CODE] , "TF1") ))
 
WO with Code TF2 = COUNTROWS(
FILTER(
WORK_ORDER, CONTAINS(RELATEDTABLE(EQUIPMENT), EQUIPMENT[EQUIPMENT_CATEGORY_CODE] , "TF2") ))
 
I want to use just one command (combine them together).  I want to count WO if it has EQUIPMENT[EQUIPMENT_CATEGORY_CODE] either TF1 or TF2.  I tried below but it doesn't work.
 
COUNTROWS(
FILTER(
WORK_ORDER, CONTAINS(RELATEDTABLE(EQUIPMENT), EQUIPMENT[EQUIPMENT_CATEGORY_CODE]  in { "TF1", "TF2" } ) ))
 
Any suggestions?
 
1 ACCEPTED SOLUTION
SpartaBI
Community Champion
Community Champion

@NingMel try this:

WO with Code TF1 or TF2 =
COUNTROWS (
    FILTER (
        WORK_ORDER,
        CONTAINS (
            RELATEDTABLE ( EQUIPMENT ),
            EQUIPMENT[EQUIPMENT_CATEGORY_CODE], "TF1"
        )
            || CONTAINS (
                RELATEDTABLE ( EQUIPMENT ),
                EQUIPMENT[EQUIPMENT_CATEGORY_CODE], "TF2"
            )
    )
)

View solution in original post

3 REPLIES 3
SpartaBI
Community Champion
Community Champion

@NingMel try this:

WO with Code TF1 or TF2 =
COUNTROWS (
    FILTER (
        WORK_ORDER,
        CONTAINS (
            RELATEDTABLE ( EQUIPMENT ),
            EQUIPMENT[EQUIPMENT_CATEGORY_CODE], "TF1"
        )
            || CONTAINS (
                RELATEDTABLE ( EQUIPMENT ),
                EQUIPMENT[EQUIPMENT_CATEGORY_CODE], "TF2"
            )
    )
)

@SpartaBI Thank you so much it works!!!  I knew it was something to do with this || but I never use it before.  I tried below but it didn't work.  Anyway thank you so much.

 
EQUIPMENT[EQUIPMENT_CATEGORY_CODE] in { "TF' ,"TF2"}
SpartaBI
Community Champion
Community Champion

@NingMel my pleasure 🙂

Please don't forget to accept my previuos reply as a solution for community viasabilty and appreciate your kudos 🙂

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.