Nelson78
Well-known Member
- Joined
- Sep 11, 2017
- Messages
- 526
- Office Version
- 2007
Hello everybody.
I'm importing datas from a website.
The datas have "" double quotes, it seems they are normally invisible (I can see them only copying an pasting in a notepad).
How can I remove them?
I've already tried different ways, unsuccessfully (for example):
I'm importing datas from a website.
The datas have "" double quotes, it seems they are normally invisible (I can see them only copying an pasting in a notepad).
How can I remove them?
I've already tried different ways, unsuccessfully (for example):
Code:
Dim c As Range
For Each c In Worksheets("Alpha").Range("E2:E55")
c = Replace(c, """", "")
Next
Code:
Dim c As Range
For Each c In Worksheets("Alpha").Range("E2:E55")
c = Replace(c, Chr(34), "")
Next