Where have my "s gone and how do I get them back?

geewhysee

New Member
Joined
Jan 7, 2016
Messages
32
I have data in notepad .csb format that looks like the sample I've pasted at the bottom of this post. However when I paste it into excel it looks like this picture ie the first set of quote marks is missing.

uS4ZpJI.jpg


I think because the first "column" is a date excel is cutting out the quote marks even though I have selected text as the format for my cells. Any idea what is going on here?


"18-04-01","00:24:53.51","00","SMN","912053",0,"","07500813452"
"18-04-01","00:24:53.51","00","SMN","912053",0,"","07500813452"
"18-04-01","01:07:36.53","00","EML","141565",0,"",""
"18-04-01","01:07:38.31","00","EML","141565",0,"",""
"18-04-01","01:17:15.18","00","SMN","912059",0,"","07561454493"
"18-04-01","01:17:15.18","00","SMN","912059",0,"","07561454493"
"18-04-01","01:23:03.72","00","EML","141590",0,"",""
"18-04-01","01:37:31.70","00","EML","141590",0,"",""
"18-04-01","01:37:42.03","00","SMN","911982",1,"","07754395334"
"18-04-01","01:37:42.03","00","SMN","911982",1,"","07754395334"
"18-04-01","01:40:02.40","00","EML","141116",0,"",""
"18-04-01","01:40:04.46","00","EML","141116",0,"",""
"18-04-01","01:40:06.47","00","EML","141116",0,"",""
"18-04-01","01:40:08.24","00","EML","141116",0,"",""
 
Last edited:

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
Apparently this is due to the TextToColumns setting. Use [Alt]+[F11] to bring up the VBA editor then [Ctrl]+[G] to go to the immediate window.

Type the following and hit [Enter]

Code:
Range("A1").Value = "0"

Then type the following and hit [Enter]

Code:
Range("A1").TextToColumns Destination:=Range("A1"), TextQualifier:=xlTextQualifierNone

Now go back to the worksheet and paste your text again.

WBD
 
Upvote 0

Forum statistics

Threads
1,221,322
Messages
6,159,228
Members
451,547
Latest member
loop98

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