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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Help the formule

Hi friends

I need help building a formula, when all WorkOrder statuses are closed for the same Case Number, it should return the status "Service Completed, Close Case.

When all or some WorkOrder Status are open. It should return with the status "Service Not Completed, Do FUP".

example below.

 

help PBI.png

 

Thank you!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

Please refer to my pbix file to see if it helps you.

Create a column.

RESULT Column =
VAR _countrow =
    CALCULATE (
        COUNTROWS ( Data ),
        FILTER (
            Data,
            Data[Case number] = EARLIER ( Data[Case number] )
                && Data[Work Order status] = EARLIER ( Data[Work Order status] )
        )
    )
VAR _countcase =
    CALCULATE (
        COUNTROWS ( Data ),
        FILTER ( Data, Data[Case number] = EARLIER ( Data[Case number] ) )
    )
VAR answer_ =
    IF (
        Data[Work Order status] = "Open"
            && _countcase = _countrow,
        "Service not completed.Work order open.Do follow up.",
        IF (
            Data[Work Order status] = "Closed"
                && _countcase = _countrow,
            "Service completed.All work order colsed.Close case.",
            IF ( _countcase <> _countrow, "Service Not Completed, Do follow up", BLANK () )
        )
    )
RETURN
    answer_

vpollymsft_0-1654755004131.png

 

 

If I have misunderstood your meaning, please provide your pbix file without privacy information and your desired output.

 

Best Regards

Community Support Team _ Polly

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

Please refer to my pbix file to see if it helps you.

Create a column.

RESULT Column =
VAR _countrow =
    CALCULATE (
        COUNTROWS ( Data ),
        FILTER (
            Data,
            Data[Case number] = EARLIER ( Data[Case number] )
                && Data[Work Order status] = EARLIER ( Data[Work Order status] )
        )
    )
VAR _countcase =
    CALCULATE (
        COUNTROWS ( Data ),
        FILTER ( Data, Data[Case number] = EARLIER ( Data[Case number] ) )
    )
VAR answer_ =
    IF (
        Data[Work Order status] = "Open"
            && _countcase = _countrow,
        "Service not completed.Work order open.Do follow up.",
        IF (
            Data[Work Order status] = "Closed"
                && _countcase = _countrow,
            "Service completed.All work order colsed.Close case.",
            IF ( _countcase <> _countrow, "Service Not Completed, Do follow up", BLANK () )
        )
    )
RETURN
    answer_

vpollymsft_0-1654755004131.png

 

 

If I have misunderstood your meaning, please provide your pbix file without privacy information and your desired output.

 

Best Regards

Community Support Team _ Polly

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Ashish_Mathur
Super User
Super User

Hi,

Write this calculated column formula

Result = if(calculate(countrows(Data),filter(Data,Data[Case Number]=earlier(Data[Case Number])))=calculate(countrows(Data),filter(Data,Data[Case Number]=earlier(Data[Case Number])&&Data[Work Order status]=earlier(Data[Work Order status]))),"Service Completed, Close Case","Service Not Completed, Do FUP")

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors