Consulting

Results 1 to 3 of 3

Thread: Is it possible to identify duplicate records using vb6?

  1. #1
    VBAX Mentor
    Joined
    Aug 2010
    Posts
    457
    Location

    Is it possible to identify duplicate records using vb6?

    Hi, is is it possible to write vba code to identify duplicate records, which help with deduplication in ms access? If so, would you know or any sample code I could use to do this?



    Thanks



  2. #2
    VBAX Tutor mohanvijay's Avatar
    Joined
    Aug 2010
    Location
    MADURAI
    Posts
    268
    Location
    To find duplicate entries in single field use below query

     
    SELECT fldname FROM tblname GROUP BY fldname HAVING COUNT(fldname)>1

  3. #3
    Have you tried the duplicates query wizard?
    Boyd Trimmell aka HiTechCoach
    Microsoft Access MVP -2010-2015

    Programming: Nine different ways to do it right, a thousand ways to do it wrong.
    Binary--it's as easy as 1-10-11

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •