Open RobertoPrevato opened 2 weeks ago
@RobertoPrevato hmm, nothing off the top of my head where the @
is coming from
@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 https://learn.microsoft.com/en-us/office/vba/excel/concepts/cells-and-ranges/range-formula-vs-formula2
If I find the answer, I will share it here. 👀
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!