Hi
I have a worddocument, where I have a $table$, and I would like to insert a table at exact that place in my word doc.
I have tried with
dim tableout as string = "<table><tr><td>1</td><td>2</td></tr><tr><td>3</td><td>4</td></tr></table>"
wordDoc.Replace("$table$", tableout, True, True)
But i then insert the HTML instead of the table. Is there a way to insert a table?
Best regards