You can bold the entire content of a cell with this code
But what I am looking for is a method to only bold some of the text in the cell.
Something like this "not bold, bold, not bold"
Is there a way to do that with PHPExcel
Code:
$objSheet->getStyle('A6')->getFont()->setBold(true)->setSize(10);
Something like this "not bold, bold, not bold"
Is there a way to do that with PHPExcel
Comment