> ## Documentation Index
> Fetch the complete documentation index at: https://fillout-005a867b-dependabot-npm-and-yarn-socket-io-parser-4.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Currency

> Collect monetary amounts and optionally convert them between different currencies in your forms.

export const SupportBanner = () => {
  const titleId = React.useId();
  return <div className="support-banner" role="region" aria-labelledby={titleId}>
      <span className="support-banner__ring support-banner__ring--outer" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--middle" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--inner" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--center" aria-hidden="true" />

      <div className="support-banner__content">
        <div className="support-banner__title" id={titleId} role="heading" aria-level="2">Still have questions?</div>

        <div className="support-banner__copy">
          <span className="support-banner__line">Our team is happy to help. Start a live chat using the</span>
          <span className="support-banner__line">
            chat bubble <span className="support-banner__chat-icon" aria-hidden="true" /> in the bottom right, or email us at
          </span>
          <span className="support-banner__line">
            <a href="mailto:support@fillout.com">support{'@'}fillout.com</a>
          </span>
        </div>

        <a className="support-banner__cta" href="mailto:support@fillout.com">Contact us</a>
      </div>
    </div>;
};

## How to add a currency field

First, drag the `Currency` field type onto your form.

<img src="https://mintcdn.com/fillout-005a867b-dependabot-npm-and-yarn-socket-io-parser-4/3ZcO_yEJK-WTjJHC/images/Screenshot2025-10-02at7.31.12PM.png?fit=max&auto=format&n=3ZcO_yEJK-WTjJHC&q=85&s=db41b7bbf8eb54aade2504b20458b52c" alt="Screenshot 2025-10-02 at 7.31.12 PM.png" width="2623" height="1438" data-path="images/Screenshot2025-10-02at7.31.12PM.png" />

USD is the default **Currency code**. To change this, click its <Icon icon="gear" iconType="solid" /> to open the right hand-panel and indicate your preferred currency. [Here is a list](https://taxsummaries.pwc.com/glossary/currency-codes) of all the possible options.

<Info>
  This feature is available on **Starter**, **Pro**, **Business**, and **Enterprise** plans. Learn more about our pricing plans and advanced features [**here**](https://www.fillout.com/pricing).
</Info>

## Collect a dynamic type of currency

If you'd like to let your respondents choose the currency or if it should be specified by an [external source](/integrations) (e.g. Airtable or Notion), click <Icon icon="square-plus" iconType="solid" /> to reference a field from that source.

<img src="https://mintcdn.com/fillout-005a867b-dependabot-npm-and-yarn-socket-io-parser-4/3ZcO_yEJK-WTjJHC/images/Screenshot2025-10-02at5.57.14PM.png?fit=max&auto=format&n=3ZcO_yEJK-WTjJHC&q=85&s=adcc8df114cac43ad80b0311f28bfff2" alt="Screenshot 2025-10-02 at 5.57.14 PM.png" title="Screenshot 2025-10-02 at 5.57.14 PM.png" style={{ width:"79%" }} width="1877" height="602" data-path="images/Screenshot2025-10-02at5.57.14PM.png" />

For example, we reference the form's currency dropdown above to let it determine the selected currency type.

## Convert currencies

Enable the `Convert currency` toggle in the right-hand panel to automatically convert the currency the respondent enters. You can specify a fixed currency to convert it to or provide it dynamically using the <Icon icon="square-plus" iconType="solid" />.

<img src="https://mintcdn.com/fillout-005a867b-dependabot-npm-and-yarn-socket-io-parser-4/3ZcO_yEJK-WTjJHC/images/Screenshot2025-10-02at6.04.20PM.png?fit=max&auto=format&n=3ZcO_yEJK-WTjJHC&q=85&s=1cc03c1dee3e4676667fedc9b4347823" alt="Screenshot 2025-10-02 at 6.04.20 PM.png" title="Screenshot 2025-10-02 at 6.04.20 PM.png" style={{ width:"83%" }} width="1872" height="416" data-path="images/Screenshot2025-10-02at6.04.20PM.png" />

You can also reference the converted amount anywhere in your form by typing **@** and selecting your currency question followed by **Converted value**.

<img src="https://mintcdn.com/fillout-005a867b-dependabot-npm-and-yarn-socket-io-parser-4/3ZcO_yEJK-WTjJHC/images/Screenshot2025-10-02at6.08.14PM.png?fit=max&auto=format&n=3ZcO_yEJK-WTjJHC&q=85&s=5b1f0f98549603b23889492719abfd7a" alt="Screenshot 2025-10-02 at 6.08.14 PM.png" title="Screenshot 2025-10-02 at 6.08.14 PM.png" style={{ width:"65%" }} width="1226" height="238" data-path="images/Screenshot2025-10-02at6.08.14PM.png" />

<SupportBanner />
