• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Ongoing Nightmare - Opening a .txt. or .csv containing HTML script

This has been an ongoing problem that I can not figure out. Every time I open a file in excel (.txt or .csv) with html script, it parses the script as well as the columns. These files are coming from an outside source so I do not have the liberty of asking them to use a different delimiter to prevent the issue. How I can import the following example and keep it from parsing incorrectly?

Column A
001-12,February,<br><br>test, why, me</br>who knows</br>

BECOMES

Code:
Column A          Column B          Column C          Column D          Column E

001-12              February        <br><br>test        why           me</br>who knows</br>

Instead of:
Column A|Column B|Column C
001-12 February <br><br>test, why, me</br>who knows</br>
 
Back
Top