# VALUEAT

The VALUEAT function returns the value of a measure for a specified date or a date shift relative to the current column.&#x20;

## Syntax

```javascript
VALUEAT([measure], <offset interval>)
```

## Arguments

measure – The measure for which data has to be fetched. Required.

offset interval - The preset format model, like month("M"), quarter("Q) or year("Y"). Required.

## Return value

The measure value at a specific point in time.

## Example

```
VALUEAT([Sales], "-1M")
//Returns the sales measure from the preceding month

VALUEAT([Sales], "1Q")
//Returns the sales measure from the next quarter
```

Let's look at a monthly sales report. The VALUEAT function can be applied to return the value of the sales measure for a particular month(s) preceding or after the current month. This is useful in evaluating the financial performance relative to other periods.

<figure><img src="https://3062809325-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FEbkCXCUXmtUq5tcnUtZE%2Fuploads%2Fpk82dQCXH1PefSOFAGhO%2Fimage.png?alt=media&#x26;token=446f441d-1abb-4250-8c27-6e2c033b0993" alt=""><figcaption><p>Fetching the measure value for the previous month</p></figcaption></figure>

Similarly, we can fetch the sales value for the next quarter as shown in this example.

<figure><img src="https://3062809325-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FEbkCXCUXmtUq5tcnUtZE%2Fuploads%2F9sQcYBBe7nHtt43oPRPT%2Fimage.png?alt=media&#x26;token=05e90f29-8cc6-4ae6-aa6a-2a1bd9fef019" alt=""><figcaption><p>Fetching the measure value for the next quarter</p></figcaption></figure>
