Forum Discussion
NeilTJustice
Aug 28, 2023Copper Contributor
Duplicates in one column with different values in another column
I have a table that has a column with a range of values that are not unique, i want to find the values that are the same in column A then see what it returns in column B if all the values in column B...
Detlef_Lewin
Aug 28, 2023Silver Contributor
=LET(
a,UNIQUE(A$2:B$8,,TRUE),
b,CHOOSECOLS(a,1),
c,CHOOSECOLS(a,2),
d,FILTER(c,b=A2,B2),
d)
- neiltownend1510Aug 30, 2023Copper ContributorIs this a DAX formula in power query editor for power Bi?
- Detlef_LewinAug 30, 2023Silver ContributorIt's neither. It's an Excel formula.