# IsNumeric (AnyValue)

| **Name**    | ***Is Numeric (Any Value)***                                             |
| ----------- | ------------------------------------------------------------------------ |
| Syntax      | IsNumeric (Any value)                                                    |
| Purpose     | To check whether a given value represents an integer or a real number.   |
| Description | Returns true if the specified value is numeric. Otherwise returns false. |
| Return Type | Boolean                                                                  |
| Parameters  | Value \[System.Object] – Value to be checked                             |

![](https://3083465318-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsR50Wa7EwZGlmPSAMkkf%2Fuploads%2FdL3QInyd1V1U31OFtSkk%2F0.png?alt=media)

**Example**

In this example, we will pass a numeric, real value to the function transformation object using a *Variables* object.

Where,

*value* = 3.123456789

<figure><img src="https://3083465318-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsR50Wa7EwZGlmPSAMkkf%2Fuploads%2FYsx4mS7CPf6ZjLozR1Ce%2F1.png?alt=media" alt=""><figcaption></figcaption></figure>

In the output window, you can see that the Boolean value, True, has been returned as the specified value is numeric.

![](https://3083465318-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsR50Wa7EwZGlmPSAMkkf%2Fuploads%2FEhPokgqWl0VeNeiAXJUq%2F2.png?alt=media)

Similarly, the Boolean value, False, will be returned if the specified value is not numeric, as shown in the example below:

![](https://3083465318-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsR50Wa7EwZGlmPSAMkkf%2Fuploads%2FLs0A4YQpVLriMG93M1Yr%2F3.png?alt=media)
