Microsoft PowerPivot for Excel 2010 – Data Analysis Expressions (DAX)
May 31, 2010 8 Comments
Formula is the reason that we use Excel; some formula are simple, e.g. “=A1+B1”, other can be complicated, e.g. DDB(cost,salvage,life,period,factor). PowerPivot also has its own formula, Data Analysis Expressions (DAX). DAX is built on top of Excel formula but it is designed to work with multiple tables of data. It also adds new functionality that allows you to create dynamic aggregations.
You will be glad to know that most DAX functions are the same as Excel functions. However, DAX functions always refer to a column or a table, e.g. “=[TotalSales] – [TotalCost]”; where [TotalSales] and [TotalCost] are 2 columns in the same table.
The biggest enhancement is DAX provides time intelligence function, which lets you use selected ranges of time frames and compare results across parallel periods.
There are 2 main types of DAX functions:
Calculated columns
Calculated column is a formula that includes functions and values, e.g. “=[Price] * 0.7”. It is similar to the formula in Excel.
Measures
Measures are used to create dynamic aggregations for use in PivotTables which are placed into the Values area of a PivotTable. It would be evaluated for each cell within the PivotTable. Based on the column value and row value, each cell will be calculated differently
DAX measures can be defined implicitly and explicitly.
Implicit DAX Measures
When you drag a field from PowerPivot Field List to the Values section, PowerPivot would automatically create a measure for you, e.g Sum of TotalProfit.
- Change the Field Setting by right click on the measure and select Edit Measure.
- Change the Custom Name to Profit by Category or change how the field to be aggregated, e.g. Average.
Implicit Measure only allows you to select simple aggregation (SUM, COUNT, AVERAGE, MIN, or MAX). If you want anything advanced, then you must create a measure explicitly.
Explicit DAX Measures
To create a DAX measure,
- Click anywhere on the PivotTable.
- Select the New Measure on the PowerPivot ribbon.
- Define the Measure Settings.
- Click the fx button to bring up the Insert Function dialogue where you can select what formula to be used in the measure.
- You can refer to other measures that are already established, e.g. “= CALCULATE ([Profit by Category ], DimChannel [ChannelName]=”Store”)”
- The second portion of the formula, “DimChannel [ChannelName]=”Store”)”, is known as filter in PowerPivot which would constraint how this measure to be evaluated in the PivotTable,
Time Intelligence Functions
No matter if you are doing financial, sales, or other performance analysis, time is always a critical dimension. You may want to compare year-to-date, same period last year, or year over year growth. PowerPivot is much more powerful than Excel in term of time series analysis. DAX provides a comprehensive list of time intelligence functions. Below is a short list of what you can use:
- FIRSTDATE (Date_Column)
- LASTDATE (Date_Column)
- FIRSTNONBLANK (Date_Column, Expression)
- LASTNONBLANK (Date_Column, Expression)
- STARTOFMONTH (Date_Column)
- STARTOFQUARTER (Date_Column)
- STARTOFYEAR (Date_Column [,YE_Date])
- ENDOFMONTH (Date_Column)
- ENDOFQUARTER (Date_Column)
- ENDOFYEAR (Date_Column [,YE_Date])
- PREVIOUSDAY (Date_Column)
- PREVIOUSMONTH (Date_Column)
- PREVIOUSQUARTER (Date_Column)
- PREVIOUSYEAR (Date_Column [,YE_Date])
- NEXTDAY (Date_Column)
- NEXTMONTH (Date_Column)
- NEXTQUARTER (Date_Column)
- NEXTYEAR (Date_Column [,YE_Date])
- DATESMTD (Date_Column)
- DATESQTD (Date_Column)
- DATESYTD (Date_Column [,YE_Date])
- SAMEPERIODLASTYEAR (Date_Column)
- TOTALMTD (Expression, Date_Column [, SetFilter])
- TOTALQTD (Expression, Date_Column [, SetFilter])
- TOTALYTD (Expression, Date_Column [, SetFilter] [,YE_Date])
- OPENINGBALANCEMONTH (Expression, Date_Column [,SetFilter])
- OPENINGBALANCEQUARTER Quarter (Expression, Date_Column [,SetFilter])
- OPENINGBALANCEYEAR (Expression, Date_Column [,SetFilter] [,YE_Date])
- CLOSINGBALANCEMONTH (Expression, Date_Column [,SetFilter])
- CLOSINGBALANCEQUARTER (Expression, Date_Column [,SetFilter])
- CLOSINGBALANCEYEAR (Expression, Date_Column [,SetFilter] [,YE_Date])
The time intelligence functions also allow fiscal years having a yearend date other than Dec 31.
I hope you enjoy my blogs on PowerPivot but I cannot tell you more than 1% of what PowerPivot can do. You must experience it yourself to truly appreciate its full potential. Download Excel 2010, PowerPivot and sample data now. Once you are able to trial it for couple hour, you would agree with me that PowerPivot is the biggest excitement of Excel 2010.
- Microsoft PowerPivot for Excel 2010 – Data Analysis Expressions (DAX)
- Microsoft PowerPivot for Excel 2010 – Adding Slicer
- Microsoft PowerPivot for Excel 2010 – Adding Pivot Chart
- Microsoft PowerPivot for Excel 2010 – Adding Pivot Table
- Microsoft PowerPivot for Excel 2010 – Creating Relationships Among Data
- Microsoft PowerPivot for Excel 2010 – Importing Data
- Why Microsoft PowerPivot?
- Microsoft PowerPivot for Excel 2010 – Introduction
- Excel 2010 – PowerPivot
Andrew Chan is the owner and founder of ALG Inc.
We help you to make better and faster decisions!
Pingback: Microsoft PowerPivot for Excel 2010 – Adding Slicer | Technologies and your business
Pingback: Microsoft PowerPivot for Excel 2010 – Adding Pivot Chart | Technologies and your business
Pingback: Microsoft PowerPivot for Excel 2010 – Adding Pivot Table | Technologies and your business
Pingback: Microsoft PowerPivot for Excel 2010 – Creating Relationships Among Data | Technologies and your business
Pingback: Microsoft PowerPivot for Excel 2010 – Importing Data | Technologies and your business
Pingback: Why Microsoft PowerPivot? | Technologies and your business
Pingback: Excel 2010 – PowerPivot | Technologies and your business
Pingback: Microsoft PowerPivot for Excel 2010 – Introduction | Technologies and your business