A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
According to documentation, the length is limited to 255 characters. You can try using some worksheet and cell. For example:
var excelApp = new Application( );
var wb = excelApp.Workbooks.Add( Type.Missing );
var ws = wb.Worksheets[1];
var r = ws.Range["A1"];
r.Formula = expressionFormula;
var result = r.Value;
The result is -5549.9986630824169.