D
doyle60
If I have a query that returns two fields, let's say, MyID and
MyComment (which can be null) and I have data that looks something
like this:
MyID--MyComment
1--------Must do
1--------
1--------Not Entered
1--------Give to sally
1
2--------Not ready.
2--------Okay to go
3--------
3--------
4--------Rufus has.
How do I get it to return one line per MyID with a concatenation of
the vertical MyComment data?:
MyID
1---------Must do, Not Entered, Give to sally
2---------Not ready., Okay to go
3---------
4---------Rufus has
I suppose it is a function. Thanks,
Matt
MyComment (which can be null) and I have data that looks something
like this:
MyID--MyComment
1--------Must do
1--------
1--------Not Entered
1--------Give to sally
1
2--------Not ready.
2--------Okay to go
3--------
3--------
4--------Rufus has.
How do I get it to return one line per MyID with a concatenation of
the vertical MyComment data?:
MyID
1---------Must do, Not Entered, Give to sally
2---------Not ready., Okay to go
3---------
4---------Rufus has
I suppose it is a function. Thanks,
Matt