Hy, i'm having a problem with php excell, i have in my db a row that its have a full url, when i export it its not make it HYperlink, i've see the docs on the internet but unft its for only one cell not for entire column
this is the code
while ($row = mysql_fetch_object($result)) {
$objPHPExcel->getActiveSheet()
->setCellValue('B11','Photo')
->setCellValue('B'.$rowNumber,$row->photo);////code for full url
$rowNumber++;
}