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
loganwol
Employee
Employee

Getting distinct values for multiple columns

Hi,

I am summarizing data from one table into another. Part of the data in the original table is a column of type text which I generate a comma delimited summary string.

 

Issues =  
    var ft = FILTER(RELATEDTABLE(Data), 
                  [ID] = Data[ID] && Data[Result] <> "Pass" && 
                  Not ISBLANK(TRIM(Data[Issue]))) 
    var issuessummary = CONCATENATEX(ft, Data[Issue], ",")
return 
     issuessummary

This works perfectly but I realized that the return values can be duplicate, so a result value string for issuessummary could equal "ABC", "DEF", "ABC", "xyz". I would like to remove the duplicate in the return string to represent "ABC", "DEF", "xyz".

Is there a way to accomplish that?


Regards

1 ACCEPTED SOLUTION
v-sihou-msft
Employee
Employee

@loganwol

 

In this scenario, since you have duplicate Issues for same ID, you should create a "summarized" data table for filtering the context. You can create a calcuated table like below:

 

Data2 = SUMMARIZECOLUMNS(Data[ID],Data[Issue],Data[Result])

Then you can involve the calcuated table in your formula.

 

Issues =  
    var ft = FILTER(RELATEDTABLE(Data2), 
                  [ID] = Data2[ID] && Data2[Result] <> "Pass" && 
                  Not ISBLANK(TRIM(Data2[Issue]))) 
    var issuessummary = CONCATENATEX(ft, Data2[Issue], ",")
return 
     issuessummary

Regards,

 

Simon Hou

View solution in original post

2 REPLIES 2
v-sihou-msft
Employee
Employee

@loganwol

 

In this scenario, since you have duplicate Issues for same ID, you should create a "summarized" data table for filtering the context. You can create a calcuated table like below:

 

Data2 = SUMMARIZECOLUMNS(Data[ID],Data[Issue],Data[Result])

Then you can involve the calcuated table in your formula.

 

Issues =  
    var ft = FILTER(RELATEDTABLE(Data2), 
                  [ID] = Data2[ID] && Data2[Result] <> "Pass" && 
                  Not ISBLANK(TRIM(Data2[Issue]))) 
    var issuessummary = CONCATENATEX(ft, Data2[Issue], ",")
return 
     issuessummary

Regards,

 

Simon Hou

Hi Simon,

When I tried the solution, I get an error "Cannot find table Data2" and I get red squiglly lines for the Data2[ID] and Data2[Result] values.

 

Regards,

Loganwol

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.