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

Summarize data based on conditions

Hello,

I need help in creating a Result column from the below table based on the condition that both Col1 and Col2 should atleast contain Yes for a Serial_Number. If yes, then the entire Serial_Number should have Yes in Result column.

Serial Number 200 and 400 contains "Yes" atleast once in both Col1 and Col2 , therefore it has "Yes" in Result.

 

Serial_NumberCol1Col2Result
100YesNoNo
100NoNoNo
100NoYesNo
200YesYesYes
200NoNoYes
300NoYesNo
300YesNoNo
300NoNoNo
400NoNoYes
400YesNoYes
400YesYesYes
2 ACCEPTED SOLUTIONS
wdx223_Daniel
Super User
Super User

Result=IF(COUNTROWS(FILTER(Table,Table[Serial_Number]=EARLIER(Table[Serial_Number])&&Table[Col1]="Yes"&&Table[Col2]="Yes"))>0,"Yes","NO")

View solution in original post

@wdx223_Daniel Thanks a ton. Your solution has worked.

View solution in original post

4 REPLIES 4

@wdx223_Daniel Thanks a ton. Your solution has worked.

MohTawfik
Resolver I
Resolver I

@prasadhebbar315 

If you want to create this calculation in the table, go to data view, click on new column and type the below formula:

Result =
 IF( 'Table'[Col1] = "Yes" || 'Table'[Col2] = "Yes",
 "Yes",
 "No")

If you want to do this in the report as a measure, go to report view and add new measure as follow:
Result measure =

Var COl1Value =
SELECTEDVALUE('Table'[Col1])

Var Col2value =
SELECTEDVALUE('Table'[Col2])

Return

 IF( COl1Value = "Yes" || Col2value = "Yes",
 "Yes",
 "No")

@MohTawfik Thanks for providing the solution

wdx223_Daniel
Super User
Super User

Result=IF(COUNTROWS(FILTER(Table,Table[Serial_Number]=EARLIER(Table[Serial_Number])&&Table[Col1]="Yes"&&Table[Col2]="Yes"))>0,"Yes","NO")

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.