-
Notifications
You must be signed in to change notification settings - Fork 404
New issue
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
At sign added to formula definition, causing broken formulas #1653
Comments
@RobertoPrevato hmm, nothing off the top of my head where the |
@dfinke Thank You for taking the time to reply so fast. While I was googling for information, I saw a thread on StackOverflow about openpyxl, and apparently there is a way to tell Excel to handle a formula like an Array formula. https://stackoverflow.com/questions/61138029/excel-vba-how-to-add-dynamic-array-formula [UPDATE] this is the most interesting part: Formula vs Formula2 If I find the answer, I will share it here. |
I was finding the same when I used Export-Excel Originally my code was
Which would give me =@image for any image cells Now it is
This has stopped it adding @ into my formula, I now get correctly =IMAGE |
@MarkLynch-EptaUK thanks could you dial in on the smallest change you did to make it work? |
@dfinke Onto the formula, I simply added |
Hi,
Can you please point me to a solution for the issue below?
I have data like in the CSV below, in a
images.csv
file.I read the CSV and create an Excel file with formulas, like here:
But for some reason, the Excel file is generated with broken formulas containing the '@' sign after the '=' sign.
Functions work when I remove the '@' sign.
I looked for information, tried using the
FormulaR1C1
property instead ofFormula
and also theSet-ExcelRange
method, but I always get the same result. I also tried adding formulas and saving the Excel in different steps.Thank You for this wonderful library!
The text was updated successfully, but these errors were encountered: