If I had the following MS Access table and sample data,
Status tbl UpdateID PK CustomerNo text StatusType text UpdateDate date
UpdateID, CustomerNo, StatusType, UpdateDate 001, 0099, Open, 2011-01-01 002, 0099, Pend, 2011-01-02 003, 0100, Open, 2011-01-03 004, 0099, Appr, 2011-01-04 005, 0100, Pend, 2011-01-05 006, 0099, Clsd, 2011-01-07
then how could I write a query that would result in the following consolidated/concatenated output?
CustomerNo, UpdateDate 0099, 2011-01-01;2011-01-02;2011-01-04;2011-01-07 0100, 2011-01-03;2011-01-05