Forum Discussion
bhorvati
8 years agoFrequent Visitor
How Remove Duplicates Using SELECTCOLUMNS
How would I modify this formula to remove duplicates for Material Number? New Table Name = SELECTCOLUMNS(Existing Table Name, "Material Number",[Material Number], "Material Name",[Material Name]...
- 8 years ago
Hi bhorvati
One way is just to wrap a DISTINCT around it
New Table Name =
DISTINCT(
SELECTCOLUMNS(Existing Table Name, "Material Number",[Material Number], "Material Name",[Material Name])
)
Phil_Seamark
8 years agoMicrosoft Employee
Hi bhorvati
One way is just to wrap a DISTINCT around it
New Table Name =
DISTINCT(
SELECTCOLUMNS(Existing Table Name, "Material Number",[Material Number], "Material Name",[Material Name])
)