Found 447 bookmarks
Newest
Using DAX studio to create PowerPivot measures
Using DAX studio to create PowerPivot measures
The newly released DAX studio is an excellent tool to develop and troubleshoot DAX calculations as it provides a way to visualize tables as they are internally represented during the computation. The
Power_BI_tips·javierguillen.wordpress.com·
Using DAX studio to create PowerPivot measures
My Thoughts on Calculated Tables in Power BI
My Thoughts on Calculated Tables in Power BI
Yesterday was a terrific day for all of Microsoft Power BI fans. Microsoft released updates for Power BI Service, Power BI Mobile and Power BI Desktop (with an unbelievable 44 new features)
Power_BI_tips·sqljason.com·
My Thoughts on Calculated Tables in Power BI
Transition Matrix Using Calculated Tables - SQLBI
Transition Matrix Using Calculated Tables - SQLBI
In the 2015 September update, Power BI introduced calculated tables, which are computed using DAX expressions instead of being loaded from a data source. This article shows the usage of calculated
Power_BI_tips·sqlbi.com·
Transition Matrix Using Calculated Tables - SQLBI
Last Date - SQLBI
Last Date - SQLBI
For this reason, calling LASTDATE when you have a row context (as it is the case in the FILTER of the original Last Balance formula) generates a context transition, and the internal MAX function only consider the date of the current row in the accounts table during the FILTER in Last Balance.Remember: LASTDATE is a table function, which is useful to use in a filter argument of CALCULATE, whereas MAX is a scalar function, which cannot be used in a filter argument. For this reason, you can write:Units LastNonBlank := CALCULATE ( SUM ( Inventory[UnitsBalance] ), LASTNONBLANK ( 'Date'[Date...
Power_BI_tips·sqlbi.com·
Last Date - SQLBI
Data Analysis Expressions (DAX)
Data Analysis Expressions (DAX)
Intro Data Analysis Expressions (DAX) In Excel 2010 PowerPivot DAX: Excel data analysis functions to construct dynamic analysis custom pivots on front end
Power_BI_tips·geekswithblogs.net·
Data Analysis Expressions (DAX)
DAX: Date Calculation Tables – Intelligent SQL
DAX: Date Calculation Tables – Intelligent SQL
Some time ago, I blogged about using a date calculation dimension in a multidimensional cube, and how easy it makes doing time intelligence in a multidimensional model. 2014 seems to have started out
Power_BI_tips·intelligentsql.wordpress.com·
DAX: Date Calculation Tables – Intelligent SQL
DAX Query Syntax Reference
DAX Query Syntax Reference
DAX queries allow the user to retrieve data defined by a table expression from the xVelocity in-memory analytics engine (VertiPaq). The user can create measures as part of the query; these measures
Power_BI_tips·technet.microsoft.com·
DAX Query Syntax Reference
New and Returning Customers – DAX Patterns
New and Returning Customers – DAX Patterns
The New and Returning Customers pattern dynamically calculates the number of customers with certain behaviors based on their purchase history. This calculation can be computing-intensive and, thus, a
Power_BI_tips·daxpatterns.com·
New and Returning Customers – DAX Patterns
Handling Different Granularities – DAX Patterns
Handling Different Granularities – DAX Patterns
The Handling Different Granularities pattern is a technique to show and hide measures depending on the level of granularity of the underlying data. For example, you do not want to display a measure
Power_BI_tips·daxpatterns.com·
Handling Different Granularities – DAX Patterns
Parameter Table – DAX Patterns
Parameter Table – DAX Patterns
The Parameter Table pattern is useful when you want to add a slicer to a PivotTable and make it modify the result of some calculation, injecting parameters into DAX expressions. To use it, you must
Power_BI_tips·daxpatterns.com·
Parameter Table – DAX Patterns