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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
DMB90
Frequent Visitor

If Any Row with a Specific ID contains "Closed" then Return "Closed" Value in All Rows for ID

I have a column with a specific ID listed several times and I'm trying to check if any row with a specific ID contains a "Closed" status and if so mark it as "Closed" but if all rows with a specific ID are blank in status, then mark it as "Open" in the newly created column.

1 ACCEPTED SOLUTION
v-kongfanf-msft
Community Support
Community Support

Hi @DMB90 ,

 

You can try below formula to create calculated column:

Status Result = 
VAR CurrentID = 'YourTable'[ID]
VAR ClosedCheck = 
    CALCULATE(
        COUNTROWS('YourTable'),
        FILTER(
            'YourTable',
            'YourTable'[ID] = CurrentID &&
            'YourTable'[Status] = "Closed"
        )
    )
RETURN
    IF(
        ClosedCheck > 0,
        "Closed",
        "Open"
    )

vkongfanfmsft_0-1715307053360.png

 

Best Regards,
Adamk Kong

 

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
v-kongfanf-msft
Community Support
Community Support

Hi @DMB90 ,

 

You can try below formula to create calculated column:

Status Result = 
VAR CurrentID = 'YourTable'[ID]
VAR ClosedCheck = 
    CALCULATE(
        COUNTROWS('YourTable'),
        FILTER(
            'YourTable',
            'YourTable'[ID] = CurrentID &&
            'YourTable'[Status] = "Closed"
        )
    )
RETURN
    IF(
        ClosedCheck > 0,
        "Closed",
        "Open"
    )

vkongfanfmsft_0-1715307053360.png

 

Best Regards,
Adamk Kong

 

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

The column for ID I need is already a measure and won't register. It's called "commentable_id" and is a measure and set to whole numbers.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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