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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.