Hi folks, I am trying to merge 5 columns of data in an excel sheet into a single column of data. Each column contains a partial list of names some rows have multiple names and some rows have zero names. If there are multiple names in a row i would just like to ignore them and just take the frist name for the merge, which one doesn't matter, just needs to be one name and not 3 names concatinated. Hope that makes sense, heres a sample of data I am dealing with and desired results posted below:
Company Contact1 Contact2 Contact3 Contact4 Contact 5
ICSCorp Bob Kevin
BoxCo John
TVLand
Teletime Rich
Yukon John Billy jill
Desired Result:
Company Contact
ICSCorp Bob
BoxCo John
TVLand
Teletime Rich
Yukon John
=CONCATENATE(H1,I1,J1, K1, L1, M1) Will do what I want BUT if a row contains more then one name it will just put both names in the new column which I dont want to happen. Is there any way to do this? Thankyou in advance for any help
Company Contact1 Contact2 Contact3 Contact4 Contact 5
ICSCorp Bob Kevin
BoxCo John
TVLand
Teletime Rich
Yukon John Billy jill
Desired Result:
Company Contact
ICSCorp Bob
BoxCo John
TVLand
Teletime Rich
Yukon John
=CONCATENATE(H1,I1,J1, K1, L1, M1) Will do what I want BUT if a row contains more then one name it will just put both names in the new column which I dont want to happen. Is there any way to do this? Thankyou in advance for any help