I have a workflow that is dealing with a big Excel file. At some point of the process I have to extract one of the tabs as new sheet. The tab to be extracted contains some text and some formulas and the extracted sheet needs to have the text and the results of the formulas.
I used a read range inside an Excel process Scope/Use Excel file to copy the range and a Write range workbook to write it to the new file.
The problem is that sometimes the write range when writing doesn’t write at all the values resulting from formulas just empty cells or zero. And this on a totally random basis…
I would really appreciate if anyone has an idea, also because we are already in production with this project.
Can you try using read range workbook activity instead of excel read range. Ideally there is no specific reason it could happen…but to check please try with read range workbook activity as you are already using write range workbook
At the beginning I was using read range workbook, but I realized that read range Excel is much faster. Now I’m testing switching the write range workbook with write range Excel…
The reason, at the end, was not on the bot side, but on the file… The formula on the file had an additional criteria that was giving the problem… Fixing the formula => problem fixed…