5) =STEYX(known_ys, known_xs) approximates \( \sqrt{\text{MSE}} \), the typical vertical error in Y-units.
8) The slope from LINEST (with TRUE,TRUE) can be pulled by =INDEX(LINEST(Y,X,TRUE,TRUE),1,1).
9) The degrees of freedom for inference are returned by =INDEX(LINEST(Y,X,TRUE,TRUE),4,1).
10) A two-sided p-value for slope can be computed as =T.DIST.2T(ABS(t), df), where t = slope / SE(slope).
13) Using only functions, you cannot derive ANOVA pieces (SSE, SSR, MSE) without ToolPak.