1. Tracing LET Bindings and Array Arithmetic
Financial AnalystBackground
An analyst received a shared financial model containing dynamic array formulas that transform projected figures across several steps.
Problem
Understanding intermediate calculations produced by nested LET variables before the final aggregation.
How to use
Set Mode to 'Explain a formula (expand)', enter `=LET(x, SEQUENCE(5), y, x*2, SUM(y))` into the formula field, and run the evaluation.
Outcome
The tool displays a 10-node AST, shows variable `x` bound to `[1;2;3;4;5]`, `y` bound to `[2;4;6;8;10]`, and evaluates the final sum to `30`.