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
The equal sign should be stripped when inserting a formula into <f> tags (see Reference).
While Excel will still handle it correctly, it can cause errors in other applications (e.g. Google Sheets).
Adding ltrim on the value can fix this:
} elseif (is_string($value) && $value{0}=='='){ $file->write('<c r="'.$cell_name.'" s="'.$cell_style_idx.'" t="s"><f>'.self::xmlspecialchars(ltrim($value, '=')).'</f></c>');
The text was updated successfully, but these errors were encountered:
fixed in #321
Sorry, something went wrong.
No branches or pull requests
The equal sign should be stripped when inserting a formula into <f> tags (see Reference).
While Excel will still handle it correctly, it can cause errors in other applications (e.g. Google Sheets).
Adding ltrim on the value can fix this:
The text was updated successfully, but these errors were encountered: