Forum Discussion
TomLU123
8 years agoHelper III
Remove Duplicated Rows in a table
Hi Experts, I am creating a new table that collect all the dates of two other tables by using following formular. Date Table = UNION ( SELECTCOLUMNS('Overall Result',"Date",'Overall Result'[...
- 8 years ago
Hi Tom,
You could use DISTINCT
DISTINCT(
UNION (
SELECTCOLUMNS('Overall Result',"Date",'Overall Result'[Date]),
SELECTCOLUMNS('Hiring Manager List',"Date",'Hiring Manager List'[Created]))
)or consider doing the table using Power Query
/Erik
donsvensen
8 years agoSkilled Sharer
Hi Tom,
You could use DISTINCT
DISTINCT(
UNION (
SELECTCOLUMNS('Overall Result',"Date",'Overall Result'[Date]),
SELECTCOLUMNS('Hiring Manager List',"Date",'Hiring Manager List'[Created]))
)
or consider doing the table using Power Query
/Erik