So I'm new around these parts, and after browsing/searching for a bit I'm convinced someone here can figure this out
I'm trying to prepare an upload to my online system, and need to concatenate fields to a single Record ID. Problem, there can be (and is) several duplicates, but I need unique values.
Here's the data:
Here's what I'd like to end up with (notice the single row for each ID#):
I'm trying to prepare an upload to my online system, and need to concatenate fields to a single Record ID. Problem, there can be (and is) several duplicates, but I need unique values.
Here's the data:
Code:
13661 Credit | Funds | EU
13661 Buyout | Funds |EU
13661 Buyout | Funds | EU
13661 Growth | Buyout | Funds | EU
13680 Distressed | Funds |US
13688 Buyout | Funds | EU
13689 Credit | Funds | EU
13689 Buyout | Funds | EU
Here's what I'd like to end up with (notice the single row for each ID#):
Code:
13661 Buyout | Growth | Credit | Funds | EU
13680 Distressed | Funds |US
13688 Buyout | Funds | EU
13689 Buyout | Credit | Funds | EU