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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
GianlucaM
Helper II
Helper II

remove duplicates over 2 column dax

Hi 

I need to create a Dim table based on fact, and I need to avoid to use power query.

What i'm trying to get it's a DAX that allows me to select some columns from a table, and gives me back just the unique value. 
Something you can easilly do by selecting the two column and type "remove duplicates" in power query.


Doing it in DAX would let me have a lighter file
Here an example
From

ABC
Red2big
Red2Small
Jellow 1Big

  

I need to obtain
AB

AB
Red2
Jellow 1
1 ACCEPTED SOLUTION
barritown
Super User
Super User

Hi @GianlucaM,

This line should help you to achieve the required outcome:

New Table = SUMMARIZE ( 'Table', 'Table'[A], 'Table'[B] )

Best Regards,

Alexander

My YouTube vlog in English

My YouTube vlog in Russian

 

View solution in original post

1 REPLY 1
barritown
Super User
Super User

Hi @GianlucaM,

This line should help you to achieve the required outcome:

New Table = SUMMARIZE ( 'Table', 'Table'[A], 'Table'[B] )

Best Regards,

Alexander

My YouTube vlog in English

My YouTube vlog in Russian

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.

Top Solution Authors