How to Concatenate in Power BI

Before we jump into the how-to, let’s talk about why you’d want to concatenate in the first place. Concatenation is your secret weapon for:

  1. Creating full names from first and last name columns
  2. Building custom labels for your visuals
  3. Generating dynamic titles that change with your data
  4. Combining address components for a complete address

It’s like giving your data a makeover—suddenly, it’s more readable, more insightful, and frankly, more awesome.

Concatenation Methods in Power BI #

In Power BI, you’ve got three main ways to concatenate:

  1. The ampersand (&) operator: Quick and dirty
  2. The CONCATENATE function: Your reliable standby
  3. The CONCATENATEX function: For when you need to bring out the big guns

Let’s break these down, shall we?

Basic Concatenation: Joining Strings in Power BI Desktop #

Let’s start simple. Say you want to combine a first name and last name. Here’s how you’d do it with the & operator:

Click on ‘New Column’ in the Modeling tab
Enter this formula

Full Name = 'Table'[First Name] & " " & 'Table'[Last Name]

Boom! You’ve just created a full name column. The ” ” adds a space between the names. Smooth, right?

Leveling Up: Advanced Concatenation Techniques #


Ready to kick it up a notch? Let’s try combining text with numbers:

Product Description = 'Products'[Product Name] & " - $" & 'Products'[Price]

This gives you something like “Awesome Widget – $19.99”. Now you’re cooking with gas!

Need to get fancier? Enter the CONCATENATE function:

Address = CONCATENATE('Customers'[Street], ", ", 'Customers'[City], ", ", 'Customers'[State], " ", 'Customers'[Zip])

This bad boy will give you a full address like “123 Main St, Anytown, NY 12345”.

CONCATENATEX: When You Need to Get Fancy #


Sometimes, you need to concatenate values across a table. That’s where CONCATENATEX shines. Check this out:

Product List = 
CONCATENATEX(
    Products,
    Products[ProductName],
    ", "
)

This will give you a comma-separated list of all your products. Neat, huh?

Putting It All Together: A Real-World Concatenation Example #

Let’s create a dynamic report title:

Report Title = 
"Sales Report for " & 
SELECTEDVALUE('Date'[Year]) & 
" - Total Sales: $" & 
FORMAT([Total Sales], "#,##0")

This will give you a title like “Sales Report for 2023 – Total Sales: $1,234,567” that updates automatically. How cool is that?

Best Practices for Concatenation in Power BI #

  1. Use calculated columns for static concatenations
  2. Use measures for dynamic concatenations that change with context
  3. Keep an eye on performance—excessive concatenation can slow things down

Troubleshooting Common Concatenation Issues #

Hitting some snags? Here are some quick fixes:

  1. NULL values: Use the COALESCE function to replace NULLs with a default value
  2. Formatting issues: Convert numbers to text with FORMAT before concatenating

FAQs #

Can I concatenate values from different tables? #

Absolutely! Just make sure your tables are related.

How do I concatenate dates with text? #

Convert your dates to text first using the FORMAT function.

Is there a limit to how many values I can concatenate? #

Technically no, but keep an eye on performance with very large concatenations.