We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$excel = new \Vtiful\Kernel\Excel($config); $freeFile = $excel->fileName("free.xlsx") ->header(['name', 'money']); for($index = 1; $index < 10; $index++) { $freeFile->insertText($index, 0, 'viest'); $freeFile->insertText($index, 1, 10); } $freeFile->insertText(12, 0, "Total"); $freeFile->insertFormula(12, 1, '=SUM(B2:B11)');
在上面的代码中, 第十二行,第二列的单元格,通常为:B12 ,设置了一个求和的公式,但是这个B12 目前无法手动设置单元格样式
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在上面的代码中, 第十二行,第二列的单元格,通常为:B12 ,设置了一个求和的公式,但是这个B12 目前无法手动设置单元格样式
The text was updated successfully, but these errors were encountered: