DAX Time Intelligence for Beginners - Excelerator BI

Power BI
Previous Dynamic Period DAX Calculation | RADACAD
Finding Duplicate Rows in PowerPivot–Across Tables or Within Tables - PowerPivotPro
Finding Duplicates in PowerPivot – Within Current Table (HasDupeInThisTable) or Across Tables (HasDupeInTable2) I got a question on Twitter today wh
Solved: Finding value related to latest Date - Microsoft Power BI Community
Hi guys. I have a table with these columns: Item No, Date, and Price I want to add a fourth column, Latest Price. Latest Price looks at all rows with the same Item No, finds the latest Date out of all those rows, and gives me the Price from that row. Item No Date Price Latest Price 12345 J...
Group By Computed Columns - SQLBI
In any version of DAX, you can aggregate data by grouping one or more columns using SUMMARIZE and/or ADDCOLUMNS. In Excel 2016, Power BI Desktop, and Analys
Related Distinct Count – DAX Patterns
DAX Patterns is a collection of ready-to-use data models and formulas in DAX, which is the programming language of PowerPivot. Create your Excel data model faster by using a DAX pattern!
Writing a more efficient DAX measure - Microsoft Power BI Community
Hi, I recently wrote a DAX measure based on some help I got on this forum. However I now see that these measures are very consuming in terms of memory and slow my report down way too much. I have a table with the following structure: I have one line per person giving me the name of that person and...
Use of RANKX in Power BI measures - SQLBI
The RANKX function in Power BI might have an unexpected behavior when applied to a column that has a specific sort order in the data model. This article exp
Power BI: DAX: Text Functions - TechNet Articles - United States (English) - TechNet Wiki
Technical articles, content and resources for IT Professionals working in Microsoft technologies
Defining Variables In DAX Queries – Chris Webb's BI Blog
Variables are the best thing to happen to DAX since, well forever – they are so cool I’m almost ready to like DAX as much as I like MDX. There are already several good articles and blog posts out t…
Nested Variables In DAX – Chris Webb's BI Blog
Last week, at the SQL Server Days conference in Belgium, Kasper mentioned in his presentation that it was possible to define variables inside variables in DAX. So, for example, you could define a m…
Measures – Year Over Year Percent Change
A Fabulous new Excel Add-In for Power Pivot - Excelerator BI
Analyzing events with a duration in DAX – further simplification
Alberto Ferrari has recently published a very smart concept how to analyze events with a duration in DAX, which you should read here, if you haven
Dynamic duration calculation using DAX in Power BI and Power Pivot
Dynamic duration calculation for events with start- & end date that can exclude weekends and holidays using DAX for Power BI and Power Pivot
GENERATE Function (DAX)
Selected Products Share of Relevant Category - PowerPivotPro
I am constantly amazed at how much you can achieve in Power Pivot with a relatively small amount of DAX knowledge. I was working with a client recently an
SQLBI - Marco Russo : DAX Editor 2.0 finally available: it is a must have for #ssas #tabular #dax developers
The SQL Server Data Tools (SSDT) editor for Tabular models has been improved in the recent updates. For example, the Tabular Model Explorer enables you to quickly jump between the entities of your model organized in a hierarchical way. However, when it
Using "IN" Operator in DAX
In this post you learn how to use "IN" operation in DAX. You also learn how to create and use Power BI Desktop grouping feature.
Analyzing events with a duration in DAX - SQLBI
This article analyzes how to efficiently work with events that lasts over time, such as the duration of an order considering the distance between order date
DAX Studio 2.5.0 Release
Documenting your Tabular or Power BI Model – Data Savvy
If you were used to documenting your SSAS model using the MDSchema rowsets, you might have noticed that some of them do not work with the new tabular models. For example, the MDSCHEMA_MEASUREGROUP_…
Numbering sequence of events in DAX - SQLBI
This article explains how to create a calculated column in DAX to get a sequential number identifying the events related to a particular entity. In a model
Solved: Re: Summarizing and Running Averages - Microsoft Power BI Community
For the RunningAverage Column use the expression RunningAverage = Averagex ( Filter ( YourTable, YourTable[Pod] = Earlier ( YourTable[Pod]) && [Complete]
DAX cheat sheet
PowerPivot DAX Cheat Sheet - list of sample formulas for calculated columns and measures
Power BI: DAX: Math and Trigonometric Functions - TechNet Articles - United States (English) - TechNet Wiki
Technical articles, content and resources for IT Professionals working in Microsoft technologies
Power BI: DAX: Statistical Functions - TechNet Articles - United States (English) - TechNet Wiki
Technical articles, content and resources for IT Professionals working in Microsoft technologies
DAX Resource Center
Technical articles, content and resources for IT Professionals working in Microsoft technologies
DAX Survival Guide
Technical articles, content and resources for IT Professionals working in Microsoft technologies
Correlation - Microsoft Power BI Community
Technique to do correlation in DAX with thanks to for teaching me about VAR statement. This creates a correlation between forecasting table and wages tables: In forecasting, create the following custom column: CorrelateX2 = // Gregory J Deckler - 2/18/2016 // Create a new column that subtracts...