How to Add Currency Symbol in Tableau

Cody Schneider8 min read

Adding a currency symbol to your numbers in Tableau is a fundamental formatting tweak that makes your data immediately understandable. This quick adjustment transforms abstract numbers into tangible business metrics like sales, revenue, or costs. This guide will walk you through the various ways to add and customize currency symbols, from simple clicks to more advanced calculations for handling multiple currencies.

Why Is Currency Formatting So Important?

Before jumping into the how-to, it’s worth clarifying why this small step adds so much value to a dashboard. Proper number formatting isn't just about making things look nice, it’s about clear communication.

  • Clarity: A "$" or "€" symbol instantly tells your audience they're looking at money. Without it, a number like "45,000" could be anything - units sold, website visits, or inventory count.
  • Professionalism: Well-formatted dashboards inspire confidence. They show attention to detail and a commitment to presenting data in an easily digestible way.
  • Reduced Cognitive Load: When users can grasp information at a glance without having to guess the context, they can spend more mental energy on analyzing the insights your dashboard provides, not on deciphering the numbers.

Spending a few seconds on formatting saves your audience minutes of confusion and makes your work far more impactful. Let’s look at the different methods for getting it done.

Method 1: The Quickest Fix (Formatting a Measure on a Worksheet)

This is the most common and direct method. You use it when you've already built a chart or table and want to format a specific number that appears in the view. This change will only apply to the measure on this particular worksheet.

Let's say you have a simple bar chart showing a SUM(Sales) measure.

  1. Drag your measure (e.g., Sales) onto the view, perhaps onto the Columns shelf, and a dimension (e.g., Category) onto the Rows shelf.
  2. You’ll see numeric values on the axis or as labels, but without any currency symbol.
  3. Right-click the measure pill that's in your view (e.g., the SUM(Sales) pill on the Columns shelf).
  4. From the context menu, select Format...

The Format pane will appear on the left side of your workspace. By default, it will be on the Axis tab if your measure is on an axis. Here’s what to do next:

Under the "Pane" or "Axis" Tab

The formatting options are often available on both tabs. If your number is part of an axis, format the Axis tab. If it's a label in a table, format the Pane tab.

  1. In the "Scale" section, find the Numbers dropdown menu.
  2. Click the dropdown and select Currency (Standard). This automatically applies the currency format based on your computer's regional settings (locale). For most users in the US, this will default to USD ($).
  3. If you need more control, select Currency (Custom).

The Custom currency option gives you several useful settings:

  • Decimal places: Set the number of digits to show after the decimal point. For general sales figures, two is standard.
  • Prefix/Suffix: This is where you can manually type the currency symbol. You can use $, £, €, ¥, or any other symbol. You can also place it before (prefix) or after (suffix) the number.
  • Units: This is incredibly useful for large numbers. You can display values in Thousands (K), Millions (M), Billions (B), etc., to make charts cleaner and easier to read.
  • Include thousands separators: Keep this checked to include commas (e.g., 1,234,567 vs. 1234567).
  • Negative Values: Choose how to display negative numbers, typically with a minus sign or enclosed in parentheses. Parentheses are common in financial reporting.

Method 2: Set It and Forget It (Changing Default Properties)

If you have a measure like "Sales" or "Revenue" that will always represent a currency value, you can set its default formatting. This way, every single time you drag that measure into a new worksheet, it will already be formatted correctly. This is a massive time-saver for any analyst.

Follow these steps:

  1. In the Data pane on the left, find the measure you want to format (e.g., Sales). This is your original data field, not a pill that's already in the view.
  2. Right-click on the measure name.
  3. Hover over Default Properties in the context menu.
  4. Select Number Format... from the sub-menu.

A dialog box will pop up. This gives you the exact same formatting options as the Format pane:

  • Select Currency (Standard) for a quick format based on your locale.
  • Select Currency (Custom) to manually set the symbol ($), decimal places, negative values, and units (K, M, B).

After clicking OK, you won't see any immediate changes on existing worksheets. However, from this point forward, anytime you create a new sheet and drag the Sales measure into the view, it will automatically appear with the currency formatting you chose.

Method 3: The Advanced Approach (Calculated Fields for Dynamic Currencies)

What if your data includes sales from multiple countries and you want to display the correct currency symbol for each one? For example, show sales from the US with a "$" but sales from Germany with a "€". A standard number format can't do this, as it applies uniformly to the entire measure. For this, you need a calculated field.

The strategy here is to create a new field that converts the number into a string and attaches the correct currency symbol based on a dimension like Country.

Important Note: Because this method creates a text string (e.g., "$1,250.50"), the output can no longer be used as a number for mathematical aggregations like sums, averages, or building charts with continuous axes. Use the original numeric measure for your charts and drop this calculated field onto the Label or Tooltip shelf for display purposes.

Building the Calculated Field

  1. Right-click anywhere in the Data pane and select Create Calculated Field...
  2. Give your calculation a descriptive name, like "Sales (Formatted Currency)".
  3. Use a CASE statement or IF/ELSEIF block to define the logic. A CASE statement is often cleaner for this purpose.

Here’s an example formula you can adapt:

CASE [Country]
WHEN "United States" THEN "$" + STR(ROUND([Sales], 2))
WHEN "United Kingdom" THEN "£" + STR(ROUND([Sales], 2))
WHEN "Japan" THEN "¥" + STR(ROUND([Sales], 0))
WHEN "Spain" THEN STR(ROUND([Sales], 2)) + " €"
ELSE "$" + STR(ROUND([Sales], 2))
END

Breaking Down the Formula:

  • CASE [Country]: This tells Tableau to check the value of the Country dimension for each row of data.
  • WHEN "United States" THEN ...: This is the logic for a specific country.
  • STR(): This crucial function converts your numeric Sales value into a string (text), allowing you to combine it with the currency symbol string (the "+").
  • ROUND([Sales], 2): Before converting to a string, it's a good practice to round your number to the desired number of decimal places. Some currencies, like the Japanese Yen, traditionally have zero decimals.
  • "$" + ...: This concatenates the character "$" with your sales number. Notice for Spain's Euro, we put the symbol at the end (a suffix) with a space. You have full control over the output.
  • ELSE: The ELSE statement acts as a default. If a country in your data doesn't match any of the WHEN conditions, it will be formatted with a dollar sign.

Using Your New Calculation

Now that you have your Sales (Formatted Currency) field, you can drag it onto the Label mark to display the dynamic values directly on your chart, or onto the Tooltip mark to have them appear when you hover over data points.

Bonus Tip: Formatting in Tooltips

Often, a chart axis might be formatted correctly, but the number in the tooltip still shows as a plain number. To fix this, click on the Tooltip card in the Marks shelf. An editor box will appear. Here you can see the text and fields that show up in the hover-over tooltip.

The easiest way to format the number here is to ensure the original measure pill on the Marks card (or elsewhere in the view) is formatted correctly using Method 1. For instance, if you have SUM(Sales) on the Tooltip shelf, right-click that pill on the shelf, select Format..., and apply your currency formatting there. This change will then be reflected inside the tooltip.

Final Thoughts

You now have three solid methods for adding currency symbols in Tableau, from the quick fix for a single chart to setting company-wide defaults and creating complex dynamic labels. Mastering these simple formatting skills will instantly elevate the quality and clarity of your dashboards, making your data analysis more accessible and professional.

While tools like Tableau offer powerful deep-dive capabilities, much of modern reporting still involves tedious manual work like formatting fields or connecting data from different sources. We created Graphed to eliminate that friction by allowing you to build and modify reports using simple, natural language. Instead of clicking through menus, you can just ask, "Show me last quarter's sales by country as a map, with values shown in local currencies," and get an interactive, auto-updating dashboard in seconds. It connects all your data, understands your questions, and builds the visualizations you need so you can spend your time on insights, not setup.

Related Articles

How to Connect Facebook to Google Data Studio: The Complete Guide for 2026

Connecting Facebook Ads to Google Data Studio (now called Looker Studio) has become essential for digital marketers who want to create comprehensive, visually appealing reports that go beyond the basic analytics provided by Facebook's native Ads Manager. If you're struggling with fragmented reporting across multiple platforms or spending too much time manually exporting data, this guide will show you exactly how to streamline your Facebook advertising analytics.

Appsflyer vs Mixpanel​: Complete 2026 Comparison Guide

The difference between AppsFlyer and Mixpanel isn't just about features—it's about understanding two fundamentally different approaches to data that can make or break your growth strategy. One tracks how users find you, the other reveals what they do once they arrive. Most companies need insights from both worlds, but knowing where to start can save you months of implementation headaches and thousands in wasted budget.