in reply to Reading wrong value from excel sheet

You don't say what you use to get the value from the cell. Is it $cell->value() or $cell->unformatted()? Try both ('value()' is the formatted value and might be rounded). If neither help, you'll have to round it yourself. Note that the value you see in Excel is probably rounded also.

Replies are listed 'Best First'.
Re^2: Reading wrong value from excel sheet
by sandeep_car (Novice) on May 20, 2013 at 17:45 UTC

    Hi runrig,

    I am printing $cell from below

     my $cell = $sheet -> {Cells} [$row] [$col];

    this itself give me incorrect result.

    I have used

    $cell_value=sprintf("%s", $cell -> {Val});

    to get the values

    Thanks,