> For the complete documentation index, see [llms.txt](https://help.accentuate.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.accentuate.io/metafield-definitions/fields/field-data-type/shopify-field-types/shopify-integer.md).

# Shopify » Integer

A Shopify Integer works similar to the Decimal type, but only allows for input of a number without decimals.\
\
The *value* property returns a numeric value directly, allowing you to do numeric comparisons directly:

```liquid
{% assign rrp = product.metafields.accentuate.rrp_price.value %}
{% if rrp > 100 %}
    <p>RRP is {{ rrp }}</p>
{% endif %}
```
