ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Copy unformatted value of cell via macro (https://www.excelbanter.com/excel-discussion-misc-queries/449946-copy-unformatted-value-cell-via-macro.html)

[email protected]

Copy unformatted value of cell via macro
 
I have created an Excel Sheet with a text generator, based upon certain circumstances.

The text generated is based on parameters, and is gathered into paragraphs of text in a single cell, using the CONCATENATE function.

If I copy the finished contents of the cell into a HTML based editor, such as an e-mail - It copies the formatting and a table (TD).

Is there a way, to copy the text (values only) into clipboard?

I have found solutions to paste it unformatted into a cell in Excel, using the following Visual Basic Code:

"
Sub Copy()

Sheet1.Range("GeneratedText").Copy
Sheet2.Cells(1, 1).PasteSpecial xlPasteValues
Sheet2.Cells(1, 1).Copy
"

End Sub
This copies and pastes the text unformatted to the new Cell within Excel - But I wish to paste it elsewhere, and therefor having it stores without formatting in the Clipboard.

I have found one way to do it, using DataObject to a variable, which has a function to put data in the clipboard. In order for that to function you need to add a Reference (Microsoft Forms 2.0 Object Library) which I cannot find in the Mac-version of Excel. Any ideas?

Any ideas?


All times are GMT +1. The time now is 11:13 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com