How to Add an Empty Column in Power BI

While creating a dashboard for an organization, I realized I needed a few empty columns. To do this, Power BI provides multiple ways to create empty columns, depending on whether you’re working with DAX or Power Query.

In this tutorial, I will show you all the practical methods to add an empty column in Power BI, including:

  • Add an empty calculated column in Power BI
  • Add an empty measure in Power BI
  • Insert an empty column using Power Query

Add an Empty Calculated Column in Power BI

For this example, I am using an Excel file named Vehicle, which contains four fields: Car Names, Car Models, Price, and Color, as shown below.

add a column with the same value in Power BI
  1. Open Power BI Desktop and load the table data. Then go to the Modeling tab and click on New Column to create a new field.
Show Items With No Data in Power BI
  1. In the formula bar, enter the following expression and click the check icon:
Empty Column = ""

Where:

  • Empty Column = The name of the new column
  • "" = Creates a blank/empty value
  1. Once you apply the formula, go to the Table view, and you will see that the new empty column has been successfully added to the table.
Add an empty column in power bi

This way, you can add an empty calculated column in Power BI.

Add an Empty Measure in Power BI

In Power BI, a measure cannot be completely blank by default, but we can create a measure that returns a blank value using the BLANK() function. This is useful when you want to create a placeholder measure that you will update later or use temporarily in visuals.

Follow the steps below to create an empty measure:

  1. Open your Power BI report where you want to add the empty measure. In the ribbon, select the Modeling tab. Click the New Measure option.
Add an Empty Measure in Power BI
  1. In the formula bar, type the following DAX formula:
Empty Measure = BLANK()

Where:

  • Empty Measure = Name of the measure
  • BLANK() = Returns an empty (null) value

Your measure will now appear in the Fields pane, under the selected table.

Power BI Add an Empty Measure

Since it returns a blank value, it won’t display anything in visuals until you update the formula.

Insert an Empty Column Using Power Query in Power BI

Power Query makes it easy to insert a new blank column that you can later fill with data, formulas, or transformations. This is useful when preparing your dataset for additional business logic.

Follow the steps below to add a blank column in Power Query:

  1. Open your report and load the dataset you want to modify. In the Home tab, click Transform data. This will open the Power Query Editor.
Add a New Column in Power BI Power Query
  1. In the Queries pane on the left, select the table where you want to add a new empty column. In the ribbon, go to the Add Column tab and click Custom Column.
power query add blank column
  1. Then A dialog box will appear. In the New column name field, enter the name of your column, for example: Empty Column
  2. In the Custom column formula box, type:
""
how to add a blank column in power query
  1. Click OK. This formula returns a blank value for every row.
how to add blank column in power query

You will now see a new empty column added to your table, with each row containing a blank value. Click Close & Apply to load the updated table back into Power BI.

In the same way, if you want the column contents to be null, instead of a blank double quote, add null.

Power query add column null

Then you can see that the column contains only null values.

Power query add column null in Power BI

Delete Empty Columns in Power Query in Power BI

Let us see how to delete or remove empty columns using the Power Query Editor in Power BI.

Sometimes your dataset may contain blank or unused columns that are no longer required. Removing them helps keep your data model clean and improves performance.

Follow the steps below to remove a column:

  1. Open your report and load the dataset. In the Home tab, click Transform data. In the Queries pane, choose the table from which you want to remove empty columns.
power query add empty column
  1. Click on the empty column(s) you want to delete. In the ribbon, under the Home tab, click Remove Columns -> Remove Columns.

Note:

You can select multiple columns by holding Ctrl while clicking.

power query insert blank column

This will delete all the selected empty columns from the table.

add a blank column in power query

Once the columns are removed, click Close & Apply to load the updated table back into Power BI.

This is how to delete or remove empty columns in Power Query in Power BI.

In this Power BI tutorial, I covered how to insert an empty column using Power Query, add an empty calculated column, and add an empty measure. Additionally, I explained how to delete empty columns in Power Query when they are no longer needed.

You may like the following Power BI tutorials:

Power Apps functions free pdf

30 Power Apps Functions

This free guide walks you through the 30 most-used Power Apps functions with real business examples, exact syntax, and results you can see.

Download User registration canvas app

DOWNLOAD USER REGISTRATION POWER APPS CANVAS APP

Download a fully functional Power Apps Canvas App (with Power Automate): User Registration App