I have data that looks like:
name field1 field2 field3
John abc dcf fdd
Sue ddf
Beth fds rtfds
And I want it to look like this:
abc John
dcf John
fdd John
ddf Sue
fds Beth
rtfds Beth
Note the rows have variable numbers of fieldx columns... I'm trying to use a VBA script from MrExcel and getting an "application defined or object defined error."
Is there a way to do this with just an excel formula? I can post the VBA script, but if there is a formula solution that would be better.