Hi,
I want to create a table with just 1 row and 2 cols, each col has different values.
When I try to write in that specific column, it just vanishes and writes only the last value.
Please help
for c=1 to 2
If c = 2 Then


oTable.Cell(1, c).Range.Text = "Customer Ship To: "

oTable.Cell(1, c).Range.Text = "Test: "
oApp.Selection.TypeParagraph
end if
Next
it write only Test and not Customer Ship To