HI,
I have a table with 4 columns : "questionID", "Question", "Response", "clientName"
for the same question, we have alot of responses from differents clients, I would like some ideas to clean up my data in new sheet and don't display multiple rows for the same questionId.
this what I have
<tbody>
</tbody>
this is what I need
<tbody>
</tbody>
Any ideas to begin my VBA code? thanks
I have a table with 4 columns : "questionID", "Question", "Response", "clientName"
for the same question, we have alot of responses from differents clients, I would like some ideas to clean up my data in new sheet and don't display multiple rows for the same questionId.
this what I have
questionID | Question | Response | clientName |
111 | Q01 | responseq011 | clientA |
111 | Q01 | responseq012 | clientB |
222 | Q02 | responseq021 | clientA |
222 | Q02 | responseq022 | clientB |
<tbody>
</tbody>
this is what I need
questionID | 111 | 222 | |
question | Q01 | Q02 | |
response | responseq011 | responseq021 | clientA |
responseq012 | responseq022 | clientB |
<tbody>
</tbody>
Any ideas to begin my VBA code? thanks
Last edited: