I'm using CreateDocument to create an output document that shows results without showing all the functions used to get those results.
In the source notebook I create some tables using Grid:
table1=Grid[{{"A","B","C"}}, Frame->All]
?
Then laterI insert that table into the output document:
CreateDocument[
, table1,
.]
Note the quotes.
If I remove quotes from the original expression some of the strings are misinterpreted as commands.
In this trivial example I only showed cells containing literal strings, but in my real table many of the cells are function calls.
How do I get rid of those quotes from the output?
Thanks