Re: UNION ALL Query
From: Ken Snell (kthsneisllis9_at_ncoomcastt.renaetl)
Date: 07/31/04
- Next message: Gary Walter: "Re: Formatting Address Fields"
- Previous message: Dennis: "Query for Report"
- In reply to: Brook: "Re: UNION ALL Query"
- Messages sorted by: [ date ] [ thread ]
Date: Sat, 31 Jul 2004 13:22:16 -0400
Because I don't know all the fields that are in your tables, I will show you
how to bring over your formatted display using just the one field from each
table. You'll need to add more fields to each SELECT clause to bring over
the other fields.
SELECT "KI-" & Format(tblCustomOrders.Autonumberfield, "0000") AS
ActOrderNum
FROM tblCustomOrders
UNION ALL
SELECT "NW-" & Format(tblStockOrders.Autonumberfield, "0000") AS ActOrderNum
FROM tblStockOrders;
--
Ken Snell
<MS ACCESS MVP>
"Brook" <anonymous@discussions.microsoft.com> wrote in message
news:7ace01c4770a$b987ce80$a601280a@phx.gbl...
> Jeff,
>
> Thanks for the info, yes I did you a format for the
> display of my Autonumber: for tbleStockOrders I used the
> format "NW-"0000, and for tblCustomOrders I used the
> format "KI-"0000, I am using an update query to send the
> info from the unionquery to a tblMasterInventory. Any
> suggestions on how I can pull these formats into my
> tblMasterInventory?
>
> Thanks for your help!
>
> Brook
>
> >-----Original Message-----
> >Brook
> >
> >From your description, it sounds like you've used a
> format to modify the
> >display of your autonumber fields. This doesn't modify
> the data stored,
> >just the display of it.
> >
> >--
> >Good luck
> >
> >Jeff Boyce
> ><Access MVP>
> >
> >.
> >
- Next message: Gary Walter: "Re: Formatting Address Fields"
- Previous message: Dennis: "Query for Report"
- In reply to: Brook: "Re: UNION ALL Query"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|
Loading