I am using PHPExcel to put some comments to cells. But if I put range, than I see error:
Cell coordinate string can not be a range of cells.
I need a function that can convert my range to array of cells for loop.
For example, if I have (A6:A11) => array(A6, A7, A8, A9, A10, A11).
How to do it?