final CellAddressImpl cellIndex = new CellAddressImpl( _sheetName, _xlsCell.getColumn(), _xlsCell.getRow() );
throw new SpreadsheetException.LoadError( "Error parsing cell " + cellIndex, e );
}
_rowBuilder.addCellWithExpression( new LazySpreadsheetExpressionParser( expression, CellRefFormat.A1 ) );
if (xlsFormulaCell instanceof NumberFormulaCell) {
final NumberFormulaCell xlsNumFormulaCell = ((NumberFormulaCell) xlsFormulaCell);
_rowBuilder.applyNumberFormat( convertNumberFormat( xlsNumFormulaCell, xlsNumFormulaCell.getNumberFormat() ) );
}
if (this.config.loadAllCellValues) {
if (xlsFormulaCell instanceof NumberFormulaCell) {
_rowBuilder.setValue( ((NumberFormulaCell) xlsFormulaCell).getValue() );
}