Hi Carter
one option - well two really:
if the information is in cells A1, B1 & C1 and you want it combined into D1
then in D1 type
=A1 & " " & B1 & " " & C1
this will give you the contents of each with a space between
OR
=CONCATENATE(A1," ",B1," ",C1)
which will give you exactly the same thing
Hope this helps
Cheers
JulieD