I'm generating a report that lists a product number in one column and the history log of where it is in another column. My problem is, when a product has more than one entry in the history column, it generates a whole new line for it and the only new info would be the history column while all of the other columns repeat itself. I need to know how to combine all if the history records for each product number into one so there won't be a repetion of the other columns. Please help!
FOR EXAMPLE:
Right now its like:
ITEM #: HISTORY LOG:
1 abc
1 def
2 ghi
I want it to be like:
ITEM #: HISTORY LOG:
1 abc,def
2 ghi
FOR EXAMPLE:
Right now its like:
ITEM #: HISTORY LOG:
1 abc
1 def
2 ghi
I want it to be like:
ITEM #: HISTORY LOG:
1 abc,def
2 ghi