Gerando planilha

This commit is contained in:
Kenio 2025-09-02 18:23:29 -03:00
parent ddaf7da99a
commit bd1735bc71

View file

@ -1077,7 +1077,7 @@ class Spreadsheet_Excel_Writer_Parser extends PEAR
*/
function _cellToRowcol($cell)
{
preg_match('/(\$)?([A-I]?[A-Z])(\$)?(\d+)/',$cell,$match);
preg_match('/(\$)?([A-Z]+)(\$)?(\d+)/', $cell, $match);
// return absolute column if there is a $ in the ref
$col_rel = empty($match[1]) ? 1 : 0;
$col_ref = $match[2];