How to select and also exclude criteria from same field (1 Viewer)

ST99

New member
Local time
Today, 07:06
Joined
May 14, 2024
Messages
1
Hi there, I am fairly new to Access therefore I hope you can help me figure this out. Listed below are products and suppliers. If I wanted to filter on a product e.g. Lemonade and want to see a list of suppliers BUT also exclude suppliers that sell Tea from the list. The answer should be "Sweet Drinks" as the other two are Tea suppliers too. But do I get to this answer from the data below?

What type of join would I need please? And how do I include a criteria and exclude others at the same time? I am hoping to connect the query to Excel and use a pivot table to select a product while excluding rows of data connected to the excluded product.

Many Thanks!!

ProductSUP_IDSupplierProfit £ (Mill)
CoffeeS01AA beverages
1.1​
CoffeeS02Drinks R Us
0.9​
Hot ChocolateS01AA beverages
1.1​
Hot ChocolateS03Sweet Drinks
0.5​
LemonadeS01AA beverages
1.1​
LemonadeS02Drinks R Us
0.9​
LemonadeS03Sweet Drinks
0.5​
TeaS01AA beverages
1.1​
TeaS02Drinks R Us
0.9​
 

plog

Banishment Pending
Local time
Today, 01:06
Joined
May 11, 2011
Messages
11,682
You need a subquery. That subquery would identify everyone who sells Tea. You then bring that query into your existing query and LEFT JOIN (show all from original query source, just those matching for the Tea query). on Supplier field (or SUP_ID if it is the id of the supplier). In the criteria, you put 'Lemonade' under the the product field and IS NULL under the supplier field from the Tea query.

That will produce the results you want. Give it a shot and if it doesn't, post your SQL so we can debug.
 

The_Doc_Man

Immoderate Moderator
Staff member
Local time
Today, 01:06
Joined
Feb 28, 2001
Messages
27,463
Below is ONE POSSIBLE example of how you might do this. The overall method of having a query within a query like that is called a SUBQUERY, in case you want to do any online lookups of that method for learning purposes.

Code:
SELECT M1.Supplier, M1.SUP_ID FROM mytable M1
WHERE M1.Product = "Lemonade" AND M1.SUP_ID NOT IN 
    (SELECT M2.SUP_ID FROM mytable M2 WHERE M2.Product = "Tea") ;

The M1 and M2 are because you are looking at the same table for two different factors (main query and subquery) so you have to help Access decide which factor goes with which query. It is called an "Alias" when you assign an internal name like that.

And by the way, that was your first post. Welcome to the forums.
 

gemma-the-husky

Super Moderator
Staff member
Local time
Today, 07:06
Joined
Sep 12, 2006
Messages
15,744
That is quite an awkward query. Straightforward enough with experience but it's something you need to experiment with to find a good solution, so that you can find flexible ways to get results yourself.
 
Last edited:

ebs17

Well-known member
Local time
Today, 08:06
Joined
Feb 7, 2020
Messages
2,021
SQL:
SELECT
   M1.Supplier,
   M1.SUP_ID
FROM
   mytable AS M1
WHERE
   M1.Product = "Lemonade"
      AND
   NOT EXISTS
      (
         SELECT
            NULL
         FROM
            mytable AS M2
         WHERE
            M2.SUP_ID = M1.SUP_ID
               AND
            M2.Product = "Tea"
      )
Or
SQL:
SELECT
   M1.Supplier,
   M1.SUP_ID
FROM
   mytable AS M1
      LEFT JOIN
         (
            SELECT
               SUP_ID
            FROM
               mytable
            WHERE
               Product = "Tea"
         ) AS M2
         ON M1.SUP_ID = M2.SUP_ID
WHERE
   M1.Product = "Lemonade"
      AND
   M2.SUP_ID IS NULL
The NOT IN construct that @The_Doc_Man shows is functionally correct, but has no index support and therefore higher performance problems.
 

theDBguy

I’m here to help
Staff member
Local time
Yesterday, 23:06
Joined
Oct 29, 2018
Messages
21,604
Hi. Welcome to AWF!

As you can see, we can do this in Access. I am not sure though how you will do it Excel using a pivot table to supply the criteria.
 

ebs17

Well-known member
Local time
Today, 08:06
Joined
Feb 7, 2020
Messages
2,021
I am hoping to connect the query to Excel and use a pivot table to select a product while excluding rows of data connected to the excluded product.
You can also create a pivot table = crosstab query directly in Access. One of the above queries saved as Qx:
SQL:
TRANSFORM
   MIN(M.Profit) AS X
SELECT
   M.Supplier,
   M.SUP_ID
FROM
   mytable AS M
      INNER JOIN Qx
      ON M.SUP_ID = Qx.SUP_ID
GROUP BY
   M.Supplier,
   M.SUP_ID
PIVOT
   M.Product
Hard-coded values such as “Tea” or “Lemonade” would be replaced with parameters and thus introduced flexibly.
 

Users who are viewing this thread

Top Bottom