Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I would like to be able to export a table box and not have the column headings be a part of the export. Does anyone know how to do this?
Right click at the table
Copy to clipboard
Table data area
Is this what you are looking for.
Anders
I am wanting to do this as a macro. I was hoping to use the Export function so that I could easily control the creation of the file and what goes into it. Can I do the Copy/Paste of the Table Data Area programmatically?
You can copy to clipboard by using
ActiveDocument.GetSheetObject("CH01").CopyTableToClipboard true
Look in the API guide for more.
Anders