Column value is broken when export to Excel

Column value is broken when export to Excel

yaylitzisyaylitzis Posts: 6Questions: 2Answers: 0

I have a column which contains some barcodes like:

  • 20021510107903080221102112000001
  • 20021510107903211220328911000001
  • 20021510107903211220328900400002

However, excel in this column has values:

  • 2,00215E+31
  • 2,00215E+31
  • 2,00215E+31

I tried to set this column as Text by

buttons: [
    {
        extend: 'excelHtml5',
        customize: function (xlsx) {
            var sheet = xlsx.xl.worksheets['sheet1.xml'];
             $('row c[r^="E"]', sheet).attr( 's', '0' );  /*Column is E*/
        }
    }
],

but nothing happened....

Is there a way to show the values correctly?

This question has an accepted answers - jump to answer

Answers

  • colincolin Posts: 15,237Questions: 1Answers: 2,599

    This thread should help, it's asking the same thing.

    Cheers,

    Colin

  • kthorngrenkthorngren Posts: 21,178Questions: 26Answers: 4,923
    Answer ✓

    This thread offers another solution that may work for you.

    Kevin

  • yaylitzisyaylitzis Posts: 6Questions: 2Answers: 0

    Hi @colin

    My code looks like this

    var tableLabels = $('#myTable').DataTable({
        data: ${jsonList},
        orderCellsTop: true,
        fixedHeader: true,
        scrollX: true,
        pageLength: 50,
        select: true,
        colReorder: true,
        order: [[0, "desc"]],
        dom: 'Bfrtip',
        buttons: [
            {
                extend: 'excelHtml5',
                customize: function (xlsx) {
                    var sheet = xlsx.xl.worksheets['sheet1.xml'];
                     $('row c[r^="E"]', sheet).attr( 's', '0' );
                }
            }
        ],
        columns: [
            {data: "dateTime"},
            {data: "barcode"}   
        ],
        columnDefs: [
            {targets: 0, className: 'dt-body-left'},
            {targets: 1, className: 'dt-body-left'}     
        ]
    });
    

    I can't figure out where the solution is applied to ... Could you help a little more?
    Thanks a lot!

  • colincolin Posts: 15,237Questions: 1Answers: 2,599

    We're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here.

    Cheers,

    Colin

  • yaylitzisyaylitzis Posts: 6Questions: 2Answers: 0

    Hi @colin,

    Thanks for your reply, I created a test case here.

  • yaylitzisyaylitzis Posts: 6Questions: 2Answers: 0

    I read @kthorngren answer and solved my question!
    Thanks!

This discussion has been closed.