Laravel-excel: Comment for cell

Created on 11 Dec 2015  路  5Comments  路  Source: Maatwebsite/Laravel-Excel

As to the cell attach a comment?

Most helpful comment

As far as I know this only works for xlxs, but there's not official support in this package.

You'll have to use native PHPExcel methods:

I think it will be something like this:

$sheet->getComment('E11')->getText()->createTextRun('Your comment:')

All 5 comments

As far as I know this only works for xlxs, but there's not official support in this package.

You'll have to use native PHPExcel methods:

I think it will be something like this:

$sheet->getComment('E11')->getText()->createTextRun('Your comment:')

Thanks!
This is what we need! But is it possible to make the autosize of pop-up comments? Now I can only set the width or height

@patrickbrouwers I added a comment with your help.
$sheet->getComment('E11')->getText()->createTextRun('Your comment:')
So how to add new comment in blade view ?
Please help me, thank you so much!

Thats not possible

Thank you so much!

Was this page helpful?
0 / 5 - 0 ratings