Thanks PHV-
That works really slick...
I notice that after this query runs, the table tbl1 which is created with this query still does not have a Primary key, which is probably Ok,
but this leads me to wondering what will happen when I append to this table later... Will I need to worry run a query similar to this one in which
that query uses this table as the source?
I attempted to create a query to clean up duplciates after
the appends that I will be making later to this table as follows:
------------------
SELECT tbl1.Item, First(tbl1.IDESC) AS Description, First(tbl1.ItemType) AS FirstOfItemType, 0 AS ASMFlag INTO tbl1
FROM tbl1
GROUP BY tbl1.BCHLD
ORDER BY tbl1.BCHLD DESC;
------------------
Not sure if I have the syntax correct as I get a message
"You tried to execute a query that does not include the specified expression 'Item' as part of an aggrgegate function"
If I can apply this to clean up the table later, I will have
all the answers that I need for this one.
thanks again for your help PHV!