Module IV· Operating ForecastBasic
Question

Which functions do you typically use for operating scenarios in Excel?

Answer

```
=CHOOSE($Case, Base, Upside, Downside)
=INDEX(Range, $Case_Number)
=IF($Case=1, Base, IF($Case=2, Upside, Downside))
```

FunctionProCon
INDEXrobust, dynamicmore setup
CHOOSEquick to readmax 254 values, hardcoded
OFFSETflexiblevolatile — slow
Nested IFalways worksunreadable at 3+ cases

INDEX is the best choice — more robust than CHOOSE, faster than OFFSET, more readable than IF.

Signal architecture — a master switch (e.g. B2), a scenario table, INDEX pulls the values.