# FROMEXCELDATE

Excel stores dates as sequential serial numbers so that they can be used in calculations. The FROMEXCELDATE function converts an excel recognized serial number to the equivalent date in DD/MM/YYYY format. Node references are also accepted as arguments.

## Syntax

```javascript
fromexceldate(value)
```

## Arguments

value- The numeric excel date value.

## Return value

Date

## Example

```javascript
fromexceldate(39457)
```

Returns 10/1/2008.

<figure><img src="https://3062809325-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FEbkCXCUXmtUq5tcnUtZE%2Fuploads%2FFCqTvzcPnvvMXKFKg7L5%2Fimage.png?alt=media&#x26;token=2307295e-4f15-4149-9272-1236cd21fdf9" alt=""><figcaption><p>Fromexceldate function</p></figcaption></figure>
