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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
DavidWaters100
Post Patron
Post Patron

create a new table with distinct values of one column, and the value of one other column

Hi,

 

I am struggling to achieve something which seems quite simple!

 

I want to create a new table using DAX with distinct values of one column, and the value of one other column - in the original table there are multiple entries, but each has two different references which are the same of each row.  See below example:

 

Original table

 

Ref1  Ref2  Amount

CDD  ROO    34

CDD  ROO    567

ABB  TEE        467

ABB  TEE        45

 

New Table

 

Ref1  Ref2

CDD  ROO

ABB  TEE

 

I can create the first column just using DISTINCT, but can't seem to return the other value.  I tried LOOKUPVALUE but it returned blanks!

 

Any help greatly appreciated.

 

Thanks

 

David

 

Proud to be a Super User!
2 ACCEPTED SOLUTIONS
Greg_Deckler
Community Champion
Community Champion

Table = DISTINCT(SELECTCOLUMNS('Table',"Ref1",[Ref1],"Ref2",[Ref2]))



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

FrankAT
Community Champion
Community Champion

Hi @DavidWaters100 ,

see figure:

 

25-04-_2020_17-09-52.pngRegards FrankAT

View solution in original post

3 REPLIES 3
DavidWaters100
Post Patron
Post Patron

Thank you very much - both answers I have accepted as solutions!

Proud to be a Super User!
FrankAT
Community Champion
Community Champion

Hi @DavidWaters100 ,

see figure:

 

25-04-_2020_17-09-52.pngRegards FrankAT

Greg_Deckler
Community Champion
Community Champion

Table = DISTINCT(SELECTCOLUMNS('Table',"Ref1",[Ref1],"Ref2",[Ref2]))



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

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors