dax

dax

1079 bookmarks
Custom sorting
Writing a more efficient DAX measure - Microsoft Power BI Community
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...
·community.powerbi.com·
Writing a more efficient DAX measure - Microsoft Power BI Community
Use of RANKX in Power BI measures - SQLBI
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
·sqlbi.com·
Use of RANKX in Power BI measures - SQLBI
Defining Variables In DAX Queries – Chris Webb's BI Blog
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…
·blog.crossjoin.co.uk·
Defining Variables In DAX Queries – Chris Webb's BI Blog
Nested Variables In DAX – Chris Webb's BI Blog
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…
·blog.crossjoin.co.uk·
Nested Variables In DAX – Chris Webb's BI Blog
Using "IN" Operator in DAX
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.
·biinsight.com·
Using "IN" Operator in DAX
Analyzing events with a duration in DAX - SQLBI
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
·sqlbi.com·
Analyzing events with a duration in DAX - SQLBI
Documenting your Tabular or Power BI Model – Data Savvy
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_…
·datasavvy.me·
Documenting your Tabular or Power BI Model – Data Savvy
Numbering sequence of events in DAX - SQLBI
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
·sqlbi.com·
Numbering sequence of events in DAX - SQLBI
DAX cheat sheet
DAX cheat sheet
PowerPivot DAX Cheat Sheet - list of sample formulas for calculated columns and measures
·powerpivot-info.com·
DAX cheat sheet
DAX Resource Center
DAX Resource Center
Technical articles, content and resources for IT Professionals working in Microsoft technologies
·social.technet.microsoft.com·
DAX Resource Center
DAX Survival Guide
DAX Survival Guide
Technical articles, content and resources for IT Professionals working in Microsoft technologies
·social.technet.microsoft.com·
DAX Survival Guide
Correlation - Microsoft Power BI Community
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...
·community.powerbi.com·
Correlation - Microsoft Power BI Community
Solved: Re: DAX Question: Running Totals with Missing Valu... - Microsoft Power BI Community
Solved: Re: DAX Question: Running Totals with Missing Valu... - Microsoft Power BI Community
Yeah actually my bad on the ALLSELECTED function, the behaviour is quite different from what I thought it was. Cool you found a soltion.   For the other one, can you change "MAX(DegreeConferred[TERM_END_D​ATE]))" to the equivalent field in your term table? That way it should have a value even when t...
·community.powerbi.com·
Solved: Re: DAX Question: Running Totals with Missing Valu... - Microsoft Power BI Community
Solved: Re: Old customers vs New customers. how to check t... - Microsoft Power BI Community
Solved: Re: Old customers vs New customers. how to check t... - Microsoft Power BI Community
Sales_OldCustomer = CALCULATE ( SUM ( Sales[Amount in USD] ), FILTER ( Sales, YEAR ( Sales[Date] ) RELATED ( Customer[Created Year] ) ))Sales_NewCustomer = CALCULATE ( SUM ( Sales[Amount in USD] ), FILTER ( Sales, YEAR ( Sales[Date] ) = RELATED ( Customer[Created Year] ) ))
·community.powerbi.com·
Solved: Re: Old customers vs New customers. how to check t... - Microsoft Power BI Community
Using Context To Traverse Hierarchies In DAX – Data Savvy
Using Context To Traverse Hierarchies In DAX – Data Savvy
My friend and coworker Melissa Coates (aka @sqlchick) messaged me the other day to see if I could help with a DAX formula. She had a Power BI dashboard in which she needed a very particular interac…
·datasavvy.wordpress.com·
Using Context To Traverse Hierarchies In DAX – Data Savvy
Physical and Virtual Relationships in DAX - SQLBI
Physical and Virtual Relationships in DAX - SQLBI
DAX calculations can leverage relationships present in the data model, but you can obtain the same result without physical relationships, applying equivalen
·sqlbi.com·
Physical and Virtual Relationships in DAX - SQLBI