# ToDateTimeOffset-Date (DateTimeOffset)

| **Name**    | ***ToDateTimeOffset***                                                                                                                     |
| ----------- | ------------------------------------------------------------------------------------------------------------------------------------------ |
| Syntax      | ToDateTimeOffset (Integer year, Integer month, Integer day)                                                                                |
| Purpose     | To create a new date using specified year, month, and day.                                                                                 |
| Description | Returns the newly created date if the parameters evaluate to a valid date. Otherwise returns null.                                         |
| Return Type | DateTimeOffset                                                                                                                             |
| Parameters  | <p>year \[System.Int64] – Year including the century</p><p>month \[System.Int64] – Month (1-12)</p><p>day \[System.Int64] – Day (1-31)</p> |

<figure><img src="https://content.gitbook.com/content/ZSZJ1eFyVv71eDI5hU45/blobs/9MtysltrDMaJGR9AO80R/0.png" alt=""><figcaption></figcaption></figure>

**Example**

In this example, we will pass valid integer values to the function transformation object using a *Variables* object.

Where,

*year* = 2020

*month* = 01

*day* = 30

![](https://content.gitbook.com/content/ZSZJ1eFyVv71eDI5hU45/blobs/P9WFsymNxTivw9nol1hE/1.png)

In the output window, you can see that the provided values have been converted into a DateTimeOffset value.

![](https://content.gitbook.com/content/ZSZJ1eFyVv71eDI5hU45/blobs/iGmwbkz75kjNkfGbMFFT/2.png)
