Large excel data sorting VBA help or function? -


i have 1000 records in excel spreadsheet in 2 columns

column 1:  - row 1- name:  - row 2- company:  - row 3- tel. no:  - row 4- email:  - row 5- web-address:  - row 6- name:  - row 7- company:  - row 8- tel.no:  etc  column 2      - row 1- mike  - row 2- microsoft  - row 3- 78544587455  - row 4- mike@microsoft.com  - row 5- www.microsoft.com  - row 6- steve b  - row 7- google  - row 8- 1521557547 

now need same data in 5 columns horizontal data on vertical if makes sense.

so end result this:

 name  | company |  tel no.   |   email          |   website      |   mike |microsoft| 78544587455|mike@microsoft.com|www.microsoft.com  steve b| google  | 1521557547 | etc  

any ideas vba?

this need. please read through answer, items 1, 7 , 8.

you want reshape column data (column b) matrix data (depending on choice, may need additional transposition).


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -