<?php $formula = 'IF(B15="","",IF(ISNUMBER(A14),A14+1,IF(ISNUMBER(B3),B3+1,1)))'; echo preg_replace_callback('/\b([A-Z])(\d+)\b/', function ($m) { return $m[1] . (1 + $m[2]); }, $formula);
You have javascript disabled. You will not be able to edit any code.