Is it possible to write into an excelsheet from A1 to Ax (vertically) with the fromArray function?
$objPHPExcel->getActiveSheet()->fromArray($array, NULL, 'A1');
What this line above does, is write from A1 to X1 (horizontal).
But is there anyway so that the output will be something like this:
$array[0]->A1
$array[1]->A2
$array[2]->A3
$array[x]->A(x+1)