# IsInteger (AnyValue)

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

<figure><img src="https://content.gitbook.com/content/zEifS4h8yurLAAwiGNX2/blobs/l1y20k8VQbiuG8OJB8aV/0.png" alt=""><figcaption></figcaption></figure>

**Example**

In this example, we will first pass an integer value and then a non-integer value to the function transformation object using a *Variables* object, to see the different outputs

Where first,

*value* = 12345678

then,

*value* = ABCDEFG

<figure><img src="https://content.gitbook.com/content/zEifS4h8yurLAAwiGNX2/blobs/xyRW3j0psywNTPWjDimn/1.png" alt=""><figcaption></figcaption></figure>

![](https://content.gitbook.com/content/zEifS4h8yurLAAwiGNX2/blobs/Ee5LzH919niVhqyzRdzv/2.png)

In the output windows, you can see that Boolean values, True and False, have been returned, depending on whether the provided value was an integer or a non-integer value.

<figure><img src="https://content.gitbook.com/content/zEifS4h8yurLAAwiGNX2/blobs/BHyNMjb1JJZVbl80TtpR/3.png" alt=""><figcaption></figcaption></figure>

![](https://content.gitbook.com/content/zEifS4h8yurLAAwiGNX2/blobs/Z9BJ0B8ARpAz7XC3Jfj1/4.png)
