potts Registered User. Local time Today, 07:58 Joined Jul 24, 2002 Messages 87 Aug 16, 2002 #1 Is it possible to create a yes/no field to a query? This field does not exist in any of the database tables. If anyone knows how to do this could they show me how?
Is it possible to create a yes/no field to a query? This field does not exist in any of the database tables. If anyone knows how to do this could they show me how?
P Pat Hartman Super Moderator Staff member Local time Today, 02:58 Joined Feb 19, 2002 Messages 47,578 Aug 16, 2002 #2 You can add fields to a query by supplying literal values. Select fld1, fld2, "Yes" As NewField From YourTable; However, these fields are NOT updateable since they do not exist in the underlying table.
You can add fields to a query by supplying literal values. Select fld1, fld2, "Yes" As NewField From YourTable; However, these fields are NOT updateable since they do not exist in the underlying table.
potts Registered User. Local time Today, 07:58 Joined Jul 24, 2002 Messages 87 Aug 16, 2002 #3 Thanks Pat. I'll just have to find another way round the problem.