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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

Need yes or no based on two different columns

Hi,

I'm having a table with thousands of entries.By default I'm having ID, Item, Identity columns. If any one item has identity yes then all the item which belongs to that  perticular ID must have result yes and all the items has no then the result for that perticular id must be no. So, there are few Id's with only sigle items and others with multiple items. So, I need a fuction or DAX Code to get the output in Result column. Sample table is provided below. 

 

Please help me.

 

Thanks

IDITEMIdentityResult
abcd1noyes
abcd2yesyes
abcd3noyes
acb1nono
acb2nono
aec1nono
ahg3yesyes
1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

Result Column =
IF("yes" IN SELECTCOLUMNS(FILTER('Table',[ID] = EARLIER([ID])),"Result",[Result]),"yes","no")


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2
Greg_Deckler
Community Champion
Community Champion

Result Column =
IF("yes" IN SELECTCOLUMNS(FILTER('Table',[ID] = EARLIER([ID])),"Result",[Result]),"yes","no")


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Anonymous
Not applicable

Thanks for your solution!!!!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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