We are calculating an Excel workbook using Aspose.Cells, in one of the cells we have a =VALUE(LEFT(string, index))
formula that shows the #NAME? error in the resulting/saved excel file. However, if I manually select the cell and exit it again the error goes away. Any idea how we can resolve this. I tried to create a simple test workbook, here are the results.
|Cell| Typed Value|Value in Resulting Workbook|Value after exiting cell|
|A1| 33 1/3% Joint & Survivor|33 1/3% Joint & Survivor|33 1/3% Joint & Survivor|
|A2| =LEFT(A1, FIND("%",A1)-1)
|33 1/3|33 1/3|
|A3| =VALUE(LEFT(A1, FIND("%",A1)-1))
|#VALUE!|33.33333333|
|A4| =VALUE(33 1/3)
|33.33333333|33.33333333|
|A5| =VALUE("33 1/3")
|#VALUE!|33.33333333|
|A6| =VALUE(LEFT(A1, FIND("%",A1)-1))/100
|#VALUE!|0.333333333|