|
|
|
|
|
by Jtsummers
1667 days ago
|
|
Not without dropping into VBA, at least last I looked. The cell dependency graph should form a DAG. If there is a cycle, it will break (Excel will detect this). A common way to produce a "loop" is to create a row for each iteration depending on the one above (which can actually be handy to see convergence and intermediate values). This means there's no way to do something like: // initial
A1 = 0
A2 = 100 (the limit)
A3 = =A3+A1 (self referential, 0 initial)
// somehow
A1 = 1
A2 = 100
A3 = =A3+A1 == 1
If you could refer to previous values it might be possible, but would also force some synchronization into the process that might be problematic. Like you'd need A1 to only update after A3 has had a chance to read it, then the next, then the next. |
|