Doubt about getCellDependents #929
nathipg
started this conversation in
API Questions
Replies: 3 comments 3 replies
-
Hi @nathipg! It may seem illogical but this is the intended behaviour of In your case, you can run
Prints:
Does it solve your issue? |
Beta Was this translation helpful? Give feedback.
3 replies
-
@nathipg A thorough explanation of these functions can be found in the Dependency Graph guide and API reference for getCellDependents and getCellPrecedents. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
I'm using hyperformula version 1.3.1 and I'm having a strange behavior from getCellDependents.
I made this sample to show it: https://jsfiddle.net/r1q2nbc9/1/
Based on the sample, cell E12 has this formula:
=SUMIFS(E2:E9,A2:A9,A12,B2:B9,B12,C2:C9,C12)
If I run the following command to get the dependents of E2:
formulaPlugin.engine.getCellDependents({ sheet: 0, col: 4, row: 1, });
I have the this return:
Which is a range from E2 to E9, why is this the function return?
To me, the return should be an array with the address to E12 cell.
What am I doing wrong?
Beta Was this translation helpful? Give feedback.
All reactions