Hi All,
I need to transpose some columns into rows, so that I can unique records in my database.
Here's an example of data I have:
ID Language
1 English
1 Spanish
2 English
2 French
Here's the output I want (notice I now have two language columns instead of one):
ID Language1 Language2
1 English Spanish
2 English French
Does anyone how I might be able to write a VBA code for this?
Thanks for your help.
I need to transpose some columns into rows, so that I can unique records in my database.
Here's an example of data I have:
ID Language
1 English
1 Spanish
2 English
2 French
Here's the output I want (notice I now have two language columns instead of one):
ID Language1 Language2
1 English Spanish
2 English French
Does anyone how I might be able to write a VBA code for this?
Thanks for your help.