# 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://3083465318-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsR50Wa7EwZGlmPSAMkkf%2Fuploads%2F3u2KIWGpxTr5S8QBivbr%2F0.png?alt=media" 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://3083465318-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsR50Wa7EwZGlmPSAMkkf%2Fuploads%2FyYF4KrQgQokkeGq82KfN%2F1.png?alt=media" alt=""><figcaption></figcaption></figure>

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

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://3083465318-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FsR50Wa7EwZGlmPSAMkkf%2Fuploads%2F2RU1zi8KNQ7Lc6dr90gs%2F3.png?alt=media" alt=""><figcaption></figcaption></figure>

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