Microsoft Access help

Associate
Joined
27 Nov 2003
Posts
2,486
Location
Loughborough
Hi all,

Can anyone answer this simple (for you!) access question?

I have 3 columns -

| Product | In Stock | Backorder |
|..Cheese..|.......4......|.......4........|
|.....Fish....|.......4......|.......8........|

What I want the Access query to do is hide the line Cheese as "In Stock" and "Backorder" are the same value but I can't find enough info on the expression builder to do it !

Any ideas?

Thanks,


Whoop
 
Padders said:
SELECT
*
FROM
[Your Table Name]
WHERE
[In Stock] <> [Backorder]

Hmmm problem with the syntax, where am I missing brackets :)

SELECT * FROM [Product] WHERE [In Stock] <> [Backorder]


Repeatedly changing and I can't get it to work !!!


Thanks,


Whoop
 
Last edited:
Back
Top Bottom