Forum Discussion
Anonymous
9 years agoNot applicable
complex duplications
Hi, I'm looking for the way to eliminate a bit more complex duplicates. The rule would be something along those lines: If: the same job category, same date and postcode, then deduplicate entry which ...
v-sihou-msft
9 years agoMicrosoft Employee
Anonymous
According to your description, you want to keep the row with biggest value within category, date, and postcode group. Right?
In this scenario, you just need to use SUMMARIZE to aggregate entries on category, date and postcode level.
Calculated Table =
SUMMARIZE (
Table,
Table[category],
Table[date],
Table[postcode],
"Status", MAX ( Table[Status Code] )
)
Regards,
- Anonymous9 years agoNot applicable
Hi Simon,
Sorry for a late reply.
That part worked! But I need other columns too in the table, unless I can somhow link it back to the Orginal table, which contains Job ID, booked.
Also Is there a fast way of exportingtoa CV with such calcualted table to check if everything worked properly?
Many Thanks