Replace double quotes ("") with single quote (") in VBA

strorg

Board Regular
Joined
Mar 27, 2002
Messages
112
I have a string varialbe that results in double quotes in several locations. At the end of several concatenations, I would like to replace the "" with ". Possible?

Regards...Tom
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Use Excel's SUBSTITUTE function, like this:<pre>theString = Chr(34) & Chr(34) & "Juan Pablo" & Chr(34)
?theString
""Juan Pablo"
?Application.Substitute(theString,Chr(34)&Chr(34),Chr(34))
"Juan Pablo"</pre>
 
Upvote 0
Re: Replace double quotes ("") with single quote (") in VBA

Use Excel's SUBSTITUTE function, like this:
theString = Chr(34) & Chr(34) & "Juan Pablo" & Chr(34)
?theString
""Juan Pablo"
?Application.Substitute(theString,Chr(34)&Chr(34),Chr(34))
"Juan Pablo"</pre>

I couldn't find the Substitute function so I tried to remove quotes using Replace function but did not work.

Then I realized some applications use a different ASCII code for quotation.

This forum post has a brief description to get this working :).

Replace Function Doesn’t Replace Double Quotation in VBA « I Learnt Today…

Menol
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top