> ## Documentation Index
> Fetch the complete documentation index at: https://fillout.com/help/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/eFTfxTsCf0OUbOXl/images/Screenshot2025-10-02at7.31.12PM.png?fit=max&auto=format&n=eFTfxTsCf0OUbOXl&q=85&s=e31a4926389d46c6e19466495214566e" 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](/help/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/vXL9XRlNv0Lls7u6/images/Screenshot2025-10-02at5.57.14PM.png?fit=max&auto=format&n=vXL9XRlNv0Lls7u6&q=85&s=a3a2422c8be173e48b01808444617074" 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/vXL9XRlNv0Lls7u6/images/Screenshot2025-10-02at6.04.20PM.png?fit=max&auto=format&n=vXL9XRlNv0Lls7u6&q=85&s=cd947a5ba3d4e417043efeb8d767d5c9" 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/vXL9XRlNv0Lls7u6/images/Screenshot2025-10-02at6.08.14PM.png?fit=max&auto=format&n=vXL9XRlNv0Lls7u6&q=85&s=051e34c133b60b0c55c8cebe967ed9ba" 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 />
