> 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-decimal.md).

# Shopify » Decimal

A Shopify Decimal works similar to the ACF type Number, allowing for input of a number with 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 %}
```
