Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • duplicates

    Click image for larger version

Name:	Capture.PNG
Views:	2
Size:	2.9 KB
ID:	1346115 Click image for larger version

Name:	Capture.PNG
Views:	2
Size:	2.9 KB
ID:	1346114 Hello
    My data has some duplicates. Below you can see the code and the output for duplicates.

    My questions is that I want to list the duplicates. How can I do that? thanks

    duplicates tag TICKER Year_Plus, g(duplicate)
    tab duplicate
    Last edited by Sanaullah Farooq; 20 Jun 2016, 19:42.

  • #2
    Code:
    sort TICKER Year_Plus
    list if duplicate, noobs sepby(TICKER Year_Plus)

    Comment


    • #3
      See also help duplicates list

      Comment

      Working...
      X