C
CW
I have successfully merged 3 queries into one using the following:
SELECT Invoice1No, Invoice1Paid FROM qryInvoice1Paid UNION
SELECT Invoice2No, Invoice2Paid FROM qryInvoice2Paid UNION
SELECT Invoice3No, Invoice3Paid FROM qryInvoice3Paid;
However the two resulting columns are named Invoice1No and Invoice1Paid
I would like these to be just InvoiceNo and Paid.
But it seems that with a Union query one doesn't get the normal Design Grid
view, where I would usually rename a field. How can I do this?
Second point - the values in the Paid column are shown as 0 and -1 (the
source values were from checkboxes). How can I change these to display either
as checkboxes again, or as Y or N?
Many thanks
CW
SELECT Invoice1No, Invoice1Paid FROM qryInvoice1Paid UNION
SELECT Invoice2No, Invoice2Paid FROM qryInvoice2Paid UNION
SELECT Invoice3No, Invoice3Paid FROM qryInvoice3Paid;
However the two resulting columns are named Invoice1No and Invoice1Paid
I would like these to be just InvoiceNo and Paid.
But it seems that with a Union query one doesn't get the normal Design Grid
view, where I would usually rename a field. How can I do this?
Second point - the values in the Paid column are shown as 0 and -1 (the
source values were from checkboxes). How can I change these to display either
as checkboxes again, or as Y or N?
Many thanks
CW