{"title":"at_least - Liquid Filter Reference","slug":"at-least-filter-reference","url":"https://support.storeconnect.com/articles/at-least-filter-reference","url_markdown":"https://support.storeconnect.com/articles/at-least-filter-reference.md","subtitle":null,"summary":"Enforces a minimum value on a number. If the input is below the specified floor, `at_least` returns the floor value instead.","type":"Developer_Documentation","video_url":"","keywords":"liquid, filters, at_least, numbers, storeconnect","last_modified":"2026-08-21T07:12:35+0000","body_markdown":"## Description\n\nLimits a number to a minimum value.\n\n| Property | Value |\n|----------|-------|\n| **Return Type** | number |\n| **Category** | numbers |\n\n## Examples\n\n\n```liquid\n\n{{ 4 | at_least: 5 }}\n```\n\n\n**Output:** `5`\n\n\n```liquid\n\n{{ 4 | at_least: 3 }}\n```\n\n\n**Output:** `4`"}