Hi All,
I have a large list of data similar to the following:
Account 1 | 123
Account 1 | 456
Account 1 | 789
Account 2 | 456
Account 2 | 789
Account 3 | 123
Account 3 | 789
Column 2 is a group the accounts are in.
What I need is to get a unique row for each Account and in separate cells, the groups they are in. For example:
Account 1 | 123 | 456 | 789
Account 2 | BLANK | 456 | 789
Account 3 | 123 | BLANK | 789
Is there any way to do this?
I've tried IF statements, but I'd need a separate IF statement for each group in each row? Is there a better way?
Thanks!
I have a large list of data similar to the following:
Account 1 | 123
Account 1 | 456
Account 1 | 789
Account 2 | 456
Account 2 | 789
Account 3 | 123
Account 3 | 789
Column 2 is a group the accounts are in.
What I need is to get a unique row for each Account and in separate cells, the groups they are in. For example:
Account 1 | 123 | 456 | 789
Account 2 | BLANK | 456 | 789
Account 3 | 123 | BLANK | 789
Is there any way to do this?
I've tried IF statements, but I'd need a separate IF statement for each group in each row? Is there a better way?
Thanks!