Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

153
Views
Why does CSV include   after being imported into Excel?

The line in question looks like this:

LongWord (Word Word 7) - Word - +55555555

And when it's imported it looks like this:

LongWord (Word Word 7) - Word - +55555555

The .csv file is generated in the browser using .js:

    /**
     * Generate CSV file in browser and download
     */
    function download(csv) {
        // CSV File
        var csvFile = new Blob([csv], { type: 'text/csv' })

        // Download link
        var downloadLink = document.createElement('a')

        // File name
        downloadLink.download = self.filename

        // We have to create a link to the file
        downloadLink.href = window.URL.createObjectURL(csvFile)

        // Make sure that the link is not displayed
        downloadLink.style.display = 'none'

        // Add the link to your DOM and click
        document.body.appendChild(downloadLink)
        downloadLink.click()
    }

I can't find other examples online of this happening nor can I debug it.

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!