Hello,
I have a button when clicked it generates and copies specific text. This is then pasted to another program that uses plain text. When pasted the text has the " mark at the beginning and end. Is there any way to remove this?
Current VBA is:
This produces the result of "Statement 1 - BLAH BLAH BLAH" "Statement 2 - BLAH BLAH BLAH". I want it to paste as Statement 1 - BLAH BLAH BLAH Statement 2 - BLAH BLAH BLAH.![]()
Select Case Range("H5").Value Case "ABC If Range("H5").Value = "ABC" Then Range("C15").Value = "Statement 1 - BLAH BLAH BLAH” Range("C16").Value = "Statement 2" & vbNewLine & "BLAH BLAH BLAH" Rows("14:14").EntireRow.Hidden = False Rows("15:15").EntireRow.Hidden = False Rows("16:16").EntireRow.Hidden = False Range("C15:C16").Copy End If End Select
If anyone can help it would be greatly appreciated.
Thanks
Bookmarks