In Access 97 I have a table that looks like this:
IncidentNumber text
SequenceNumber integer
Description memo
If I had data like this (I'll separate by commas for readability):
A0000001,1,Blah blah blah blah.
A0000002,1,This is the 1st desc.
A0000002,2,This is the 2nd desc.
A0000003,1, yadda yadda yadda yadda.
I have to produce a report based on this table, but the user wants it to look like this:
Incident Description
======== ============================================
A0000001 Blah blah blah blah.
A0000002 This is the 1st desc. This is the 2nd desc.
A0000003 yadda yadda yadda yadda
Notice how incident A00000002's rows are combined into one entry on the report. How would I query this table to combine the rows where needed?
As always, thanks for all your help!
IncidentNumber text
SequenceNumber integer
Description memo
If I had data like this (I'll separate by commas for readability):
A0000001,1,Blah blah blah blah.
A0000002,1,This is the 1st desc.
A0000002,2,This is the 2nd desc.
A0000003,1, yadda yadda yadda yadda.
I have to produce a report based on this table, but the user wants it to look like this:
Incident Description
======== ============================================
A0000001 Blah blah blah blah.
A0000002 This is the 1st desc. This is the 2nd desc.
A0000003 yadda yadda yadda yadda
Notice how incident A00000002's rows are combined into one entry on the report. How would I query this table to combine the rows where needed?
As always, thanks for all your help!