I tried making a super basic note generator, which lays out a note for the user to copy and paste into our admin system, but it is adding a trailing and leading double quotes. How do I get rid of them?
I’ve seen the large post here about this and none of the fixes work for me, mainly due to the constraints of the government work place I’m in.
The line breaks are important and must stay. This has to be super simple for the user, I can’t add references or libraries, there can be no extra steps for the user like pasting into another program first ect. There will be no other double quotes in the text.
Can you me help with the excel formula or the Macro?
Thanks
The cell named Notes that I am copying:
=CONCATENATE(C2,CHAR(10),"Error Code: ",A2,": ",B2,CHAR(10),D2,CHAR(10),"T TF Number ",Notes!$C$4," issued",CHAR(10),"T ID: ",Notes!$C$3)
The Macro to Copy:
Sub Copy_Note()
Range("Note").Select
Selection.Copy
End Sub
How it pastes:
"Special testing form
Error Code: 12345: This is a test error code
Fixed it real good
1st ref number: 2222222 issued
2nd Ref Number: 111111"
How I want it to look:
Special testing form
Error Code: 12345: This is a test error code
Fixed it real good
1st ref number: 2222222 issued
2nd Ref Number: 111111