Add New Columns in Power BI

AddColumns is a DAX function that is helpful often when writing calculations in Power BI. When adding a calculated column, we must use related data if we are working with more than one table. Let’s see the steps to add a new column in Power BI.

Step 1: You can start by opening the report you want to add a new column into.

Step 2: Click on the name of the report you want to add a new column into, right-click on the name and select the new column option to add a new column. 

Step 3: The next step is to add a new formula in the formula bar about the details to be displayed in the new column to be added. For example, if you want to merge the ‘Name’ and ‘Phone Number’ into one cell. You can add a new column as ‘New Column’ with the formula ‘New Column = [Name] & [Phone Number]’.

Step 4: Once the formula is added, press enters or click on the check mark present next to the formula bar to add the column. The new column will be added in the fields pane on the right side of the Screen and you can add it into your report whenever you need it.

Adding Columns in Power BI Desktop

Power BI is used for the analyses of all the business-related factors and for calculating different factors which are of prime importance in business running. The data can be stored in separate tables where many columns can be used to represent different data types. In this article, we will learn how to create new columns in your report using Power BI Software.

Here we will discuss 4 types of Adding Columns in Power BI Desktop

  • Add New Columns in Power BI
  • Add a Custom Column in Power BI
  • Adding Column In Virtual Table
  • AddColumns DAX Tabular Function

Similar Reads

Add New Columns in Power BI

AddColumns is a DAX function that is helpful often when writing calculations in Power BI. When adding a calculated column, we must use related data if we are working with more than one table. Let’s see the steps to add a new column in Power BI....

Add a Custom Column in Power BI

By using a formula, you can extend your existing query to include a custom column. The Query Editing dialogue box and Power Query both validate the formula syntax....

Adding Column In Virtual Table

A calculated table can be created using AddColumns. However, employing it inside a measure is the most typical application. AddColumns is a tabular function, hence additional functions are required in order to use it in a measure....

AddColumns DAX Tabular Function

A tabular function in DAX is AddColumns. It denotes that a table, not a value, is returned. Tabular functions must be buried inside other functions or utilized as a table expression before being used directly in a measure. The following syntax is required to use this function:...

Contact Us