Hi, I have a workbook with formula linking to other external workbooks, how do I refresh or update the links so that it can show actual values from the other workbooks? I’m using asposecells module for python running with jpype, currently I’m using the below codes to refresh the formula calculation but this only calculates values within the current workbook and not formula that are linked to external workbooks.
My current python code
import asposecells
jpype.startJVM()
from asposecells.api import Workbook
workbook = Workbook(Filepath)
workbook.calculateFormula()
workbook.save(Filepath)
jpype.shutdownJVM()
Appreciate your assistance, thanks!