Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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.
Solved! Go to Solution.
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"
)
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.
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"
)
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
25 | |
17 | |
12 | |
12 | |
10 |
User | Count |
---|---|
33 | |
27 | |
16 | |
14 | |
13 |