Forum Discussion
rmba22875
3 years agoFrequent Visitor
Identifying duplicates
We are currently trying to replicate some reporting we already do in excel and use Power BI instead and have hit a snag. Our data contains 2 identifying markers which we call Home and Away and make ...
tamerj1
3 years agoCommunity Champion
Hi rmba22875
please try
Duplicate =
VAR T =
VALUES ( 'Table'[Markers] )
VAR HomeMarker =
LEFT ( 'Table'[Markers], 5 )
VAR Away =
RIGHT ( 'Table'[Markers], 5 )
RETURN
IF ( Home > Away && Away & "/" & Home IN T, "Duplicate" )
rmba22875
3 years agoFrequent Visitor
Thanks for this! Sorry I missed it previously.