D
Dragon
Hi,
I have the following query collecting data from a table where 'Complete'
field is a yes/no field. I am exporting this data for a PDF merge and what I
need is the Strings 'Yes' or 'Off' from the query results for this field
instead of a 0/1 value.
Any ideas?
Thank you.
SELECT Businesses.BusinessName AS Business, Businesses.Address AS Address,
Businesses.City AS City, Businesses.State AS State,
Businesses.Zip+Businesses.ZipPlus AS Zip, Businesses.DocumentNo,
Businesses.Complete
FROM Businesses
WHERE ((([Businesses].[Zip]+[Businesses].[ZipPlus])=99056));
I have the following query collecting data from a table where 'Complete'
field is a yes/no field. I am exporting this data for a PDF merge and what I
need is the Strings 'Yes' or 'Off' from the query results for this field
instead of a 0/1 value.
Any ideas?
Thank you.
SELECT Businesses.BusinessName AS Business, Businesses.Address AS Address,
Businesses.City AS City, Businesses.State AS State,
Businesses.Zip+Businesses.ZipPlus AS Zip, Businesses.DocumentNo,
Businesses.Complete
FROM Businesses
WHERE ((([Businesses].[Zip]+[Businesses].[ZipPlus])=99056));