How To Add Dax Formula In Power Bi

How to add DAX formula in Power BI

DAX (Data Analysis Expressions) is a formula language used in Power BI to create calculations and manipulate data. It enables you to perform complex calculations, aggregations, filtering, and more within Power BI. Here are some steps to add a DAX formula in Power BI along with examples:

Step 1: Open Power BI Desktop

Launch Power BI Desktop, which is the application used to create and design Power BI reports and dashboards.

Step 2: Create or Open a Report

Either create a new report or open an existing one where you want to add the DAX formula.

Step 3: Navigate to the “Modeling” Tab

Click on the “Modeling” tab located at the top of the Power BI Desktop window.

Step 4: Click on “New Measure”

In the “Calculations” group on the “Modeling” tab, click on the “New Measure” button. This will open the “Formula Bar” where you can write the DAX formula.

Step 5: Write the DAX Formula

In the “Formula Bar”, you can start writing the DAX formula. DAX formulas consist of functions, operators, and columns from your data model.

For example, let’s say you want to create a measure that calculates the total sales for a given year:


Total Sales = SUM(Sales[Amount])

In the above formula, “Total Sales” is the name of the measure, “SUM” is the function used to calculate the sum, and “Sales[Amount]” is the column from the “Sales” table on which the calculation is performed.

Step 6: Validate and Apply

After writing the DAX formula, press Enter to validate and apply the formula. Power BI will check for any syntax errors and display the results if the formula is valid.

Step 7: Use the Measure in Visualizations

Once the DAX formula is created, you can use the measure in various visualizations like tables, charts, or matrices. Simply drag and drop the measure into the desired visualization.

Step 8: Refresh Data

If your data changes or new data is added, remember to refresh the data in Power BI to update the calculations and visuals that use the DAX formula.

That’s it! You have successfully added a DAX formula in Power BI. You can explore various DAX functions and operators to create more complex calculations and analysis.

Read more

Leave a comment