Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Currana

    SubQuery - how to Sum & Count

    Leslie, Just ran it through my app and got exactly what I needed, thank you. I need to spend some time reading thru what you have done to try and figure it all out. However, I'm really grateful to you and the other posters for helping out. Amy.
  2. Currana

    SubQuery - how to Sum & Count

    Hi r937, Unfortunately, I can't do that. My Application is written in Delphi (Pascal), it just uses MS Access tables to read & write the data (Via ADO components). Queries etc can be written in MS Access (to generate the SQL text), but need to be put thru an ADOQuery component. Thanks for the...
  3. Currana

    SubQuery - how to Sum & Count

    Yes, If I run this query :- SELECT Clients.Clientname, Count(*) AS [JobCount], SUM(Items.Itemexvat) AS [ExVAT], SUM(Items.Itemvatamount) AS [VAT], SUM(Items.Itemincvat) AS [IncVAT] FROM (((Clients INNER JOIN Jobs ON Clients.Clientid =...
  4. Currana

    SubQuery - how to Sum & Count

    Hi everyone, I’m not sure if this is a SubQuery or not, but may I ask for some help please ? I have 2 queries, the first is :- SELECT Clients.Clientname, SUM(Items.Itemexvat) AS [ExTax], SUM(Items.Itemvatamount) AS [Tax], SUM(Items.Itemincvat) AS...

Part and Inventory Search

Back
Top