How do I transpose Rows into Columns?

For example, if I've the data as follows:

Name Value
==== ====
Name1 V11
Name1 V12
Name1 V13
Name2 V21
Name2 V22

I want the OUTPUT to be as follows:

Name1 V11 V12 V13
Name2 V21 V22

Apperciate if anyone can help me out in this.

Waiting for your reply,

Cheers,