php - phpExcel write long number in cell -
while writing excel file fine see long numbers formulas in excel
example: 8.71129e+12
instead of: 1234567890
how can change format during php excel creation?
i'm following simple example here
$objphpexcel->getactivesheet()->setcellvalueexplicit('a1', '1234567890', phpexcel_cell_datatype::type_string);
Comments
Post a Comment