Hi,
Try with below steps.See if it is fine.
1) Create one variable like Var 1=Trim(Left([Name];Pos([Name];" ")-1))
This will extract first name.
2)Create one more variable Var 2==Right([Name];(Length([Name])-Pos([Name];" ")))
This will extract last name
3) insert two columns in the table and place var 1 and then var 2 variables.for first select bold and for second select italic.
4) select Right alignment for Var 1 and Left alignment for var2.remove var 1 right border and var 2 left border.
It will look like a single column.
Amit