Using CHAR(10) inserting quotes ". How do I avoid this
Posted: Wed Dec 03, 2008 4:52 am
Hi,
I have lines in excel in the following format:
I'm using the CHAR(10) as a carriage return. When I copy and past this info into text pad, the carriage return is recognized, but a set of quotes comes across at the beginning and end of each row. It looks like this:
"Test1 Test2
Test3 Test4 "
"Test5 Test6
Test7 Test8"
"Test9 Test10
Test11 Test12"
But I need it to come across without the quotes:
Test1 Test2
Test3 Test4
Test5 Test6
Test7 Test8
Test9 Test10
Test11 Test12
My concatenate script is actually longer that includes quotes so a simple find/replace of " isn't working for me.
Is there a way I can paste this info into Textpad without the quotes coming over? I tried an \n instead of CHAR(10) in excel, but it wouldn't recognize this character.
I have lines in excel in the following format:
Code: Select all
=concatenate(a1, a2, CHAR(10), a3, a4))
=concatenate(b1, b2, CHAR(10), b3, b4))
"Test1 Test2
Test3 Test4 "
"Test5 Test6
Test7 Test8"
"Test9 Test10
Test11 Test12"
But I need it to come across without the quotes:
Test1 Test2
Test3 Test4
Test5 Test6
Test7 Test8
Test9 Test10
Test11 Test12
My concatenate script is actually longer that includes quotes so a simple find/replace of " isn't working for me.
Is there a way I can paste this info into Textpad without the quotes coming over? I tried an \n instead of CHAR(10) in excel, but it wouldn't recognize this character.