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
Henrik_PBI
Helper II
Helper II

If row contains specific value, mark multiple rows with the same ID

Hi,

 

I have a table with Order IDs, where each Order ID can have mulitple rows. Some or more of these rows can have a "1" in the column "external". If a order_id is marked as external in one or more rows, I want to mark all rows in a new colum (Order_external) with "1". If a order number doesn't have a "1" in the column External, it should be 0 in the new column. See example below:

 

Here I have 3 rows for order_id 1456 (red), and one of the rows is marked as 1 in column External (blue). What I want is to create a new column (Order_external) and mark all the rows for order_id 1456 as 1 (yellow). For orders with only 0's in External column, the new column should show 0 for all rows (example: order_id 1502).

 

Forum.jpg

 

I havent been able to create this new column, can anyone help me out?

 

 

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@Henrik_PBI 


Order External= 

IF( 
    CALCULATE( MAX(Table[External]) ,ALLEXCEPT(Table,Table[Order ID] )) > 0,
    1,
    0
)

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

2 REPLIES 2
Fowmy
Super User
Super User

@Henrik_PBI 


Order External= 

IF( 
    CALCULATE( MAX(Table[External]) ,ALLEXCEPT(Table,Table[Order ID] )) > 0,
    1,
    0
)

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Thanks @Fowmy , just what I needed!

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.