Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6122177
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T15:52:06+00:00 2026-05-23T15:52:06+00:00

I am trying to create an Access query to count all the distinct transactions

  • 0

I am trying to create an Access query to count all the distinct transactions that don´t contain the characters (V). My data looks like this:

Transaction Number
997
997
998
998
998
999
999(V)

The final result I would like to get is “2” (997 and 998), so I can eliminate the 2 records ( 999 and 999(V) ). I was thinking in counting all rows and then substract all rows that contain (V), but can´t select the (V)´s. This is the query I have and It gives me 0 all the time and not 1:

SELECT     COUNT(*) AS C
FROM         (SELECT DISTINCT [Transaction Number]
                   FROM          [Product History]
                   WHERE      ([Transaction Date] = #7/6/2011#) AND ([Transaction Number] LIKE '*V*')) T

Any help is appreciated!

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T15:52:07+00:00Added an answer on May 23, 2026 at 3:52 pm

    There are a couple of ways to do this. I chose to use LEFT JOIN / IS NULL you could also do NOT IN or NOT EXISTS

    the key is joining ph1.[Transaction Number] & '(V)' = ph2.[Transaction Number]

    SELECT COUNT ([Transaction Number]) as C
      FROM (SELECT  DISTINCT ph1.[Transaction Number]
            FROM  [Product History] ph1
                                LEFT JOIN [Product History] ph2
                                ON ph1.[Transaction Number] & '(V)' = ph2.[Transaction Number] 
                                 WHERE     
                                   ph1.[Transaction Date] = #7/6/2011#
                                   and ph1.[Transaction Number] NOT LIKE '%V%'
                                   and ph2.[Transaction Number] is null) t;
    

    which outputs

    C           
    ----------- 
    2  
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to create a data access layer using t4 and C#. I
I am trying to create a recordset in Access VBA that will show me
I am trying to create a function that will block access to some of
I'm trying to create a query in an access database for a C# dataset
I am trying to create an SSIS package that queries data from a table,
I'm trying to create a report on MS Access. The query originating the report
I'm trying to access a value from the code behind to create a query
I am trying to create a query in MS Access to ultimately take the
I am trying to create a form in Microsoft Access that has 2 ComboBoxes.
I am trying to create a query that can handle grabbing values from multiple

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.