The problem is we want to get the ultimate non-formula precedents of a cell. To be more clear precedents of precedents.
E.G.
A1 10
A2 =A1
A3 =A2
So for A3 the precedent is A2, but the ultimate non-formula precedent is A1 (there are no further precedents).
Right now we call getDirectPrecedent() and store a list. Then we call the same function for the list until we get non formula precedent cell.
Is there any optimised way to achieve this? Any native API function?