I have a query which pulls a part number from one table and
pulls a Yes/No field from another table but in my query I would like to set the criteria
to place an actual "Yes" or "No" in a serialized field instead of the check box...
My query is as follows:
How can I set this up to place a yes or No in a Serialized (text type) field in my Query?
Thanks
pulls a Yes/No field from another table but in my query I would like to set the criteria
to place an actual "Yes" or "No" in a serialized field instead of the check box...
My query is as follows:
SELECT AllParts_tbl.Item, Serialized_tbl.yesno
FROM AllParts_tbl LEFT JOIN Serialized_tbl ON AllParts_tbl.Item = Serialized_tbl.PartNumber;
How can I set this up to place a yes or No in a Serialized (text type) field in my Query?
Thanks