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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Bahhoussi
New Member

Identify duplicates

Hello everybody,

 

I want to create in Power BI desktop a new column which will compare 2 other columns.

The purpose is to identify duplicates between these 2 columns.

In Excel, my formula will look like this:

If Column 1 = Column 2 Then "YES"

Else "NO"

but I don't know how to do that in Power BI.

 

Thx a lot for your help.

 

Samir.

1 ACCEPTED SOLUTION
konstantinos
Memorable Member
Memorable Member

Simple than excel , in the same table create "new column"  from the ribbon of PowerBI Desktop or right click the field name on the right pane , and the formula is  

 

1.png

 

IsDuplicate =        Column1 = Column2     This will return FALSE & TRUE...When returns true that means that is duplicated.

 

Now if you need to add it as slicer or filter( True & False is not that good visible ) then

 

IsDuplicate  =IF (  Column1 = Column2  ; " Yes"; "No") 

 

Konstantinos Ioannou

View solution in original post

4 REPLIES 4
konstantinos
Memorable Member
Memorable Member

Simple than excel , in the same table create "new column"  from the ribbon of PowerBI Desktop or right click the field name on the right pane , and the formula is  

 

1.png

 

IsDuplicate =        Column1 = Column2     This will return FALSE & TRUE...When returns true that means that is duplicated.

 

Now if you need to add it as slicer or filter( True & False is not that good visible ) then

 

IsDuplicate  =IF (  Column1 = Column2  ; " Yes"; "No") 

 

Konstantinos Ioannou
Anonymous
Not applicable

@konstantinos

 

Thank you for the tip! Is there a way to identify duplicates within one column?

 

I have a column 'Full Name'. I want to see if there is the same name two or more times

I have a column 'Emails'. I want to make sure that all emails are unique.

 

I don't want to delete duplicates. I want to see them for checking my CRM and correct mistakes.

Create a measure Rows count = COUNTROWS(Your Table name)

Then create one table visual and add the Full name field & Rows count measure. Sort by Row count measure and you will see how many times a name appear in the column.

Do the same for email address
Konstantinos Ioannou
Anonymous
Not applicable

@konstantinos

 

Wow. It is so easy and smart.

 

Thank you so much! 🙂

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors