Hi,
I'm trying to import a file containig a formula on a date filed like this:
```
| A | B |
| 25/02/2016 | A1+1 |
```
However when I read the cell B1 the value type is double (I use this code)
```
item.Cell(y).Value.GetType().Name;
```
If I try reading the cell using this code
```
item.Cell(y).TryGetValue(out value)
```
I get this decimal number: 42426.0
Do you have any solution?
Thank you.
I'm trying to import a file containig a formula on a date filed like this:
```
| A | B |
| 25/02/2016 | A1+1 |
```
However when I read the cell B1 the value type is double (I use this code)
```
item.Cell(y).Value.GetType().Name;
```
If I try reading the cell using this code
```
item.Cell(y).TryGetValue(out value)
```
I get this decimal number: 42426.0
Do you have any solution?
Thank you.