I have a worksheet of customer information where each customer may have one or more rows. The data in each column is the same except for the last column (NOTES) is different. Here is an example:
Columns:
CustNum
Last
First
Notes
Rows:
1 Jones Fred Nice Guy
1 Jones Fred Pays on time
2 Smith Greg Net 90
2 Smith Greg Late 4 times
2 Smith Greg Boss's Brother-in-law
I need to convert this to one row per customer with each note in their own column. So the final result would look like this:
1 Jones Fred Nice Guy Pays on time
2 Smith Greg Net 90 Late 4 times Boss's Brother-in-law
I THINK I can do this with something like =if(a2=a3,d3,"") in column e, then =if(a2=a4,d4,"") in column f, etc. But since there can be anywhere between 1 and 6 rows per customer, I'm getting a bit confused.
Can anyone assist me on this. I'm open to learning new/better ways of doing this.
Thank you!
Columns:
CustNum
Last
First
Notes
Rows:
1 Jones Fred Nice Guy
1 Jones Fred Pays on time
2 Smith Greg Net 90
2 Smith Greg Late 4 times
2 Smith Greg Boss's Brother-in-law
I need to convert this to one row per customer with each note in their own column. So the final result would look like this:
1 Jones Fred Nice Guy Pays on time
2 Smith Greg Net 90 Late 4 times Boss's Brother-in-law
I THINK I can do this with something like =if(a2=a3,d3,"") in column e, then =if(a2=a4,d4,"") in column f, etc. But since there can be anywhere between 1 and 6 rows per customer, I'm getting a bit confused.
Can anyone assist me on this. I'm open to learning new/better ways of doing this.
Thank you!