Solved Show results in a Field not as data but Yes or No

Number11

Member
Local time
Today, 22:56
Joined
Jan 29, 2020
Messages
619
So i have a query that looks up into a couple of tables, rather than show the serial number i just want to show Yes (its a match) or No not present?
 
you can use the format property

if serial number is a number it would be "yes";;;"No"

or for a bit of colour

[blue]"yes";;;[red]"No"
 
what is your Expression?

IIF(Dcount("1", "table", "the_criteria"), "Yes", "No")
 
using "format" will show the Yes/No, But if you enter that textbox it will reveal what is the Actual data.
 
you can use the format property

if serial number is a number it would be "yes";;;"No"

or for a bit of colour

[blue]"yes";;;[red]"No"
so thats didnt work as the serial numbers are a mix of Letters and numbers :(
 
Can you post the SQL statement for your query? Thanks.
 
This sounds like an "Unmatched" query, for which (I think) there is a query wizard. If you enabled wizards in your DB, you could try to make a new query that does a JOIN via the query wizards. It would show you if there is an unmatched record. However, whichever table is the "reference" table SHOULD have an index on that serial-number field. Not required, but makes it faster.

It MIGHT look something like this:

Code:
SELECT A.SerialNum, B.SerialNum, IIF( IsNull(B.SerialNum), "No", "Yes" )
FROM A LEFT JOIN B ON A.SerialNum = B.SerialNum ;

Not saying this is exactly what you want. Try the query wizard or search on "Unmatched Query" to see other examples of same.
 

Users who are viewing this thread

Back
Top Bottom