I am comparing the results of a series expansion of $e^x$ to Excel's $\mathop{EXP}(x)$ function. Should I expect them to be the same?
Excel's gives $\mathop{EXP}(10) = 22026.4657948067$. However, the series expansion, to 21 terms is $22031.0549667285$
This is using the series expansion below: $$e^x=1+\frac{x}{1!}+\frac{x^2}{2!}+\cdots$$
Excel's value for $EXP(10)$ is correct to the digits quoted. You seem to have made a mistake in your "series expansion": a truncation of the series, when $x > 0$, should be less than the true value, and yours is greater. The correct value of $\sum_{j=0}^{21} 10^j/j!$ (yes, that's really $22$ terms, not $21$) would be $22011.0549667285$.