How to Add a Blank Column in Power BI

Cody Schneider9 min read

Adding a blank column to a table in Power BI is a surprisingly common task, but it can be tricky if you don't know where to look. Whether you need an empty column as a placeholder, for visual formatting, or to serve as a spacer in your report, there are a few straightforward ways to get it done. This tutorial will walk you through the most effective methods using both Power Query and DAX, explaining when to use each approach for the best results.

Why Would You Need a Blank Column?

Before jumping into the "how," let's quickly cover the "why." You might find yourself needing a blank column for several strategic reasons:

  • Visual Separation: In a crowded table or matrix visual, a thin, blank column can act as a visual separator, making your report much easier for your audience to read and scan.
  • Placeholders for Commentary: If you plan to export your Power BI table to Excel or Google Sheets, adding a blank column titled "Notes" gives you a ready-made place for manual data entry or commentary without having to edit the sheet later.
  • Data Structure Preparation: Sometimes, you need to create a column structure that will be populated later through a merge operation or another data transformation step. A blank column can serve as an initial placeholder.
  • Conditional Logic Scaffolding: You might create a blank column that you then populate with values using a separate conditional column step. Creating the blank column first can sometimes make the process more organized.

Whatever your reason, understanding the main techniques will make your Power BI workflow smoother and more flexible.

Method 1: Using the Power Query Editor (Recommended)

The most robust and generally recommended method for adding a permanent, structural column to your data table is through the Power Query Editor. Transformations made in Power Query happen right as the data is ingested and shaped - before it’s even loaded into the Power BI data model. This approach is efficient and considered a best practice for data modeling.

Step 1: Open the Power Query Editor

First, you need to access the Power Query Editor where all the data shaping magic happens. From your main Power BI Desktop report view:

  • Look for the Home tab in the main ribbon at the top.
  • Click on the Transform data button. This will open a new window - the Power Query Editor.

You'll see a list of your data queries (your tables) on the left side of this new window. Select the query (table) where you want to add the blank column.

Step 2: Add a Custom Column

With your table selected, you'll now use the "Add Column" feature.

  • In the Power Query Editor's ribbon, navigate to the Add Column tab.
  • Click the Custom Column icon. This will open the Custom Column dialog box.

Step 3: Define Your Blank Column

This is where you tell Power BI what to put inside your new column. For a blank column, you have two primary options which behave slightly differently.

Option A: Creating an Empty Text Column

If you want a column that's blank but formatted as text, simply use a pair of double quotes. In the Custom Column dialog, do the following:

  • New column name: Give your new column a descriptive name, like "Future Notes" or "Data Spacer."
  • Custom column formula: In the formula box, just type:
""

That's it! Just two double quotes. This creates an empty text string, which is a perfect blank value for many use cases.

Option B: Creating a "Null" Column

A null value means the absence of any data. It’s a true, empty-state blank. This can be better if you plan to perform certain types of calculations later on, as Power BI sometimes treats null and empty strings ("") differently.

  • New column name: Name your column as desired (e.g., "Empty Region").
  • Custom column formula: In the formula box, type:
null

Step 4: Set the Data Type and Close

After clicking OK in the custom column dialog, your new blank column will appear at the far right of your table preview.

One final, crucial step in Power Query is to assign the correct data type.

  • Find your new column's header. You'll see an icon that says "ABC 123" (Any data type).
  • Click this icon and select the appropriate data type. For a "notes" column, you’d choose Text. For a number placeholder, you might choose Whole Number. Don't leave it as "Any", as this can cause issues later.
  • Once you're happy, navigate to the Home tab in the Power Query Editor and click the Close & Apply button. This will apply your changes and load the newly modified table into your Power BI model.

Method 2: Using DAX as a Calculated Column

Another way to add a column is to do it directly in Power BI's Report or Data view using a DAX (Data Analysis Expressions) calculated column. This method is fast and easy, but it comes with a trade-off. DAX calculated columns are computed after the data is loaded into the model, and they consume memory and processing power. For a simple static blank column, Power Query is more efficient.

However, if you're already working within the data model and need a quick addition, this works perfectly well.

Step 1: Go to the Data View

In your main Power BI Desktop window, click on the icon for Data view (it looks like a table) on the left-hand navigation pane. Select the table you want to modify from the Fields pane on the right.

Step 2: Create a New Column

With the table selected, you'll see the Table tools tab appear in the top ribbon. Click on New column.

A formula bar will appear at the top, just like in Excel, where you can type your DAX formula.

Step 3: Write the Simple DAX Formula

The DAX syntax is very straightforward. You define the column name, followed by an equals sign and the value.

Option A: Creating an Empty Text Column

To create a blank text column, use the following formula. You can replace Notes with whatever you want to name your column.

Notes = ""

Press Enter, and a new blank column named "Notes" will be added to your table.

Option B: Using the BLANK() Function

DAX also has an explicit BLANK() function, which is the equivalent of a null value. It’s functionally different from an empty text string (""). A BLANK() is a data-agnostic empty value.

Spacer Column = BLANK()

Once you press Enter, your new data column appears in the table and the Fields pane.

Method 3: A Blank "Measure" for Visual Formatting (Advanced Trick)

This method is a bit different. It doesn't add a column to your underlying data table at all. Instead, it uses a DAX measure to create a blank column for visual formatting only within a specific visual, like a Table or Matrix.

This is the perfect use case when you just need some visual breathing room in a report and don’t want to alter your data model.

Step 1: Create a New Measure

From the Power BI Report or Data view, right-click on any table in the Fields pane and select New measure. It doesn't really matter which table you add it to, as it contains no table-specific data, you can even create a separate "Measures Table" to stay organized.

Step 2: The Blank Measure Formula

In the formula bar, type this simple formula:

Blank Column Spacer = ""

Press Enter to save the measure. You will now see this measure (with a calculator icon) in your Fields list.

Step 3: Add the Measure to Your Visual

Now, click on a Matrix or Table visual in your report. Drag your new Blank Column Spacer measure from the Fields pane into the Values well of the visual. A new column will appear in your visual filled with blanks. You can then click the down-arrow on the column header in the Values well and rename it to a single space (" ") to make the header disappear, effectively creating a clean visual spacer.

Which Method Should You Choose?

With three options, which one is right for you? Here’s a simple rule of thumb:

  • For Structural Data Modeling: Always use the Power Query Editor (Method 1). It's the most efficient, clean, and correct way to prepare your data. Use this if you are adding a placeholder column that will be used in any substantial way.
  • For a Quick, Post-Load Addition: Use a DAX Calculated Column (Method 2) if you need a quick column and have a good reason not to go back into the Power Query Editor. It's great for columns whose values are calculated based on other columns in your model. For a purely static blank column, though, Power Query remains technically superior.
  • For Visual Formatting Only: Use a DAX Measure (Method 3) when you only need to create a visual gap in a specific table or matrix and don't want to affect the underlying data model at all.

Final Thoughts

Creating a blank column in Power BI is a fundamental skill that opens up more control over your data modeling and report design. Whether you’re preparing data structures with Power Query, adding a quick calculated column with DAX, or simply styling a visual with a spacer measure, each method serves a distinct purpose. Thinking about whether your change is for the underlying data or just for visual flair will help you choose the best path every time.

Manually preparing reports and learning the intricacies of DAX and Power Query is powerful, but it involves a significant learning curve and countless hours. At Graphed, we've designed a platform that streamlines this entire process. You can connect your marketing and sales data sources in just a few clicks and build real-time dashboards by simply describing what you want to see in plain English. Instead of wrangling editors and formulas, you can get instant insights and complete reports in seconds with our AI data analyst. Try Graphed to see how easy analytics can be.

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.