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
Hello,
For a code like:
alias Elixlsx.Sheet alias Elixlsx.Workbook sheet1 = Sheet.with_name("First") |> Sheet.set_cell("A1", {:formula, "FILTERXML(A2,\"//price\")"}) |> Sheet.set_cell("A2", "<?xml version=\"1.0\" encoding=\"UTF-8\"?><pricing><price>0.9</price></pricing>" ) %Workbook{sheets: [sheet1]} |> Elixlsx.write_to("example.xlsx")
The formula FILTERXML is considered as an invalid name.
FILTERXML
Graphically, it's can be regulated like a valid name with a manual acceptance of the formula.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
For a code like:
The formula
FILTERXML
is considered as an invalid name.Graphically, it's can be regulated like a valid name with a manual acceptance of the formula.
The text was updated successfully, but these errors were encountered: