Hello,
I'm a new user of the library. I've been playing around with the API, and reading the documentation couldn't find anything about a workbook's internal reference tree. Is this something that can be extracted given an input excel file?
In the simplest case, I'd have something like a workbook with
cell A1: 10
cell A2: 20
cell A3: =sum(A1, A2)
and spit out a structured DAG saying that A3 depends on A1 and A2. I imagine parsing formulas in every cell and recursively constructing that dependency tree wouldn't be too complicated for the base cases. Does such a feature exist?
Thanks!