Hi All,
In my table every comment that a user enters for a particular ID is stored as a new record along with the sequence number. For ex.
ID SequenceNo Comment
1-----1--------Comment1
1-----2--------Comment2
1-----3--------Comment3
1-----4--------Comment4
2-----1--------Comment1
2-----2--------Comment2
Now I want to combine all the 4 comments for that record ID into one field. But I don't want to combine all the comments in one row. They should be in one field but not displayed as one row but on a new line. The result should something like this
ID Comment
1---Comment1
----Comment2
----Comment3
----Comment4
2---Comment1
----Comment2
How to do this?
Thanks
-E
In my table every comment that a user enters for a particular ID is stored as a new record along with the sequence number. For ex.
ID SequenceNo Comment
1-----1--------Comment1
1-----2--------Comment2
1-----3--------Comment3
1-----4--------Comment4
2-----1--------Comment1
2-----2--------Comment2
Now I want to combine all the 4 comments for that record ID into one field. But I don't want to combine all the comments in one row. They should be in one field but not displayed as one row but on a new line. The result should something like this
ID Comment
1---Comment1
----Comment2
----Comment3
----Comment4
2---Comment1
----Comment2
How to do this?
Thanks
-E