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
Limerick
Frequent Visitor

Insert value in group of data depending on value from other column

Hello together, 

 

I'm struggeling with a new little Problem.
I have this Table with a lot more rows, but these two rows are the most important:

IDState
1Error
1Error
1OK
2Error
2Error
2OK
3Error
3Error

 

As you can see, the ID can get two different states. I now need to create a third row, which says that if the ID has once the state OK, then it is OK for every state:

IDStateCode
1ErrorOK
1ErrorOK
1OKOK
2ErrorOK
2ErrorOK
2OKOK
3ErrorError
3ErrorError

 

It doesnt matter if it is in DAX or in the Query. 

Thank you in advance 🙂 

1 ACCEPTED SOLUTION
jaideepnema
Solution Sage
Solution Sage

Hi @Limerick ,

Create a calculated column like this:

Code =
var statecheck=CALCULATE(CONCATENATEX('Table','Table'[State],","),ALLEXCEPT('Table','Table'[ID]))
var findvalue=CONTAINSSTRING(statecheck,"OK")
return IF(findvalue,"OK",'Table'[State])
 
which will give you the desired result:
jaideepnema_0-1633011041908.png

Please accept this as a solution if your question has been answered !!

Appreciate a Kudos 😀

View solution in original post

2 REPLIES 2
jaideepnema
Solution Sage
Solution Sage

Hi @Limerick ,

Create a calculated column like this:

Code =
var statecheck=CALCULATE(CONCATENATEX('Table','Table'[State],","),ALLEXCEPT('Table','Table'[ID]))
var findvalue=CONTAINSSTRING(statecheck,"OK")
return IF(findvalue,"OK",'Table'[State])
 
which will give you the desired result:
jaideepnema_0-1633011041908.png

Please accept this as a solution if your question has been answered !!

Appreciate a Kudos 😀

Very nice!
Thank you very much 🙂 

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.