Forum Discussion
kattlees
8 years agoPost Patron
Only Show Duplicates
If I have this data - how do I get a table that will only SHOW Duplicates Guest ID Guest Start Date End Date MRNumber 123456 Sue Smith ...
Vvelarde
8 years agoCommunity Champion
Hi, you can use this calculated column to Mark the duplicates.
Duplicate =
IF (
COUNTROWS ( FILTER ( Table1; Table1[GUEST] = EARLIER ( Table1[GUEST] ) ) )
> 1;
"YES";
"NO"
)
The next Step will be apply a filter in the visual.
Regards
Victor
gidster99
7 years agoFrequent Visitor
Note: This only worked for me when I used commas and not semi-colons.
Thanks