If I understood it correctly... the following code will do....
If you wanna fix the range...
sub Concaty()
s=0
For each cell in worksheets("Sheet2").range("B2:E2")
Concaty=concaty & Space(s) & cell.value
s=1
next
worksheets("Sheet1").range("A2").value=Concaty
End sub
if you wanna specify the range yourself then use following code...
Function Concaty(x as range)
s=0
For each cell in x
Concaty=concaty & Space(s) & cell.value
s=1
next
End Function
It takes one argument ie x as range...
Press Alt + F11 then insert module.... copy the function...
and enjoy..
Don't forget to click *
Bookmarks