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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
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.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

Find out what's new and trending in the Fabric Community.