Version 24.2 (latest)

Getting the Value of a Formula from an Excel File

In order to get the evaluated value of an Excel Cell that is represented by a Formula, you simply access the value property of the WorksheetCell.

The example code below shows you how to access a particular Excel Worksheet Cell that is populated by an Excel Formula.

In JavaScript:

var calculatedValue = theWorksheet.rows(1).cells(4).value();

Related Topics

View on GitHub