Page 2 of 2 FirstFirst 12
Results 16 to 19 of 19
  1. #16
    hendrikbez is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Oct 2014
    Posts
    138
    Thank you John



    Just one last question, is there a easy way to see duplicates in table
    tblSynonyms

    I know there is and I need to take them out, maby a list of them

  2. #17
    accesstos's Avatar
    accesstos is offline Expert
    Windows XP Access 2007
    Join Date
    Dec 2018
    Location
    Greece
    Posts
    551
    No problem! That's too easy.

    For dublicates:
    Code:
    SELECT tblSynonyms.TheWord, Count(tblSynonyms.TheWord) AS appearances
    FROM tblSynonyms
    GROUP BY tblSynonyms.TheWord
    HAVING Count(tblSynonyms.TheWord)>1;
    For unique words:
    Code:
    SELECT DISTINCT TheWord FROM tblSynonyms;
    Cheers

  3. #18
    hendrikbez is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Oct 2014
    Posts
    138
    John

    Thanks for all your help on this.

  4. #19
    accesstos's Avatar
    accesstos is offline Expert
    Windows XP Access 2007
    Join Date
    Dec 2018
    Location
    Greece
    Posts
    551
    Quote Originally Posted by hendrikbez View Post
    John

    Thanks for all your help on this.
    You're welcome!

Page 2 of 2 FirstFirst 12
Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 19
    Last Post: 10-03-2017, 09:10 AM
  2. Replies: 20
    Last Post: 04-11-2014, 07:07 AM
  3. import table to append to a table in Access 2010
    By Stephanie53 in forum Forms
    Replies: 2
    Last Post: 05-23-2013, 03:40 PM
  4. Replies: 1
    Last Post: 10-06-2011, 08:37 AM
  5. Replies: 1
    Last Post: 12-01-2010, 11:01 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums