DAX

DAX

1155 bookmarks
Custom sorting
Understanding filter context as sets of values
Understanding filter context as sets of values
I recently came across a real head-scratcher of a question on Stack Overflow. This post is an expansion of the answer I gave there. The goal is to provide a useful model to understand filter context. This is foundational knowledge for any aspiring DAXter (DAXist?) and is required to understand CALCULATE properly.
·antifound.com·
Understanding filter context as sets of values
DAX: Bitwise calculations - Phil Seamark on DAX
DAX: Bitwise calculations - Phil Seamark on DAX
As an extension to my recent article on base conversions in DAX, I thought I’d show how these conversion calculations can be used to help you perform bitwise calculations in DAX. At present, there …
·flip.it·
DAX: Bitwise calculations - Phil Seamark on DAX
Dax Templates
Dax Templates
This is where you describe the app...
·dax.powerbi.tips·
Dax Templates
Microsoft Hates Greg's Quick Measures - Microsoft Power BI Community
Microsoft Hates Greg's Quick Measures - Microsoft Power BI Community
Microsoft Hates Greg's Quick Measures Image concept and credit: Rocket Deckler Introduction Today I am announcing the availability of a new External Tool for Power BI Desktop, "Microsoft Hates Greg's Quick Measures" or MSHGQM for short. This tool more than doubles the number of Quick Measures avail...
·community.powerbi.com·
Microsoft Hates Greg's Quick Measures - Microsoft Power BI Community
Using DAX as a Query Language
Using DAX as a Query Language
Enhance your performance testing and measure tuning skills by learning DAX as a query language.
·elegantbi.com·
Using DAX as a Query Language
Finding the lowest value and highlighting in DAX | Power BI - Guy in a Cube
Finding the lowest value and highlighting in DAX | Power BI - Guy in a Cube
Sometimes you want to highlight the lowest value in a Power BI visual. First you need to find it! Then you can highlight it. What if you want to ANIMATE it? Patrick shows you how to do just that! ALLSELECTED() article: https://www.sqlbi.com/articles/the-definitive-guide-to-allselected/
·guyinacube.com·
Finding the lowest value and highlighting in DAX | Power BI - Guy in a Cube
Count Stints for Employees - DAX Challenge - Goodly
Count Stints for Employees - DAX Challenge - Goodly
Recently while working on a consulting project, I came across a very interesting problem. It was interesting enough, that I am passing it on to you.   Consider this Employee Data The data represents an employee role for each month, since the employee’s joining date. Each row means 1 employee assigned to a certain role [...]
·goodly.co.in·
Count Stints for Employees - DAX Challenge - Goodly
Increasing DAX Filter Speed and Efficiency | Purple Frog Systems
Increasing DAX Filter Speed and Efficiency | Purple Frog Systems
To understand how a filter can affect performance, first we need to understand what a filter is. A filter is a temporary table that is created on demand, held in memory, and then used as a reference for the function being filtered. The rows of the temporary filter table are all DISTINCT. This is because […]
·purplefrogsystems.com·
Increasing DAX Filter Speed and Efficiency | Purple Frog Systems
One Click Calculation Group in Power BI - Guy in a Cube
One Click Calculation Group in Power BI - Guy in a Cube
Calculation Groups in Power BI can be amazing! Patrick shows you how you can create these common patterns with just one click using Tabular Editor. Blog: https://www.esbrina-ba.com/time-intelligence-the-smart-way/ Calculation Groups: https://docs.microsoft.com/analysis-services/tabular-models/calculation-groups?view=asallproducts-allversions Tabular Editor: https://tabulareditor.com
·guyinacube.com·
One Click Calculation Group in Power BI - Guy in a Cube
Calculating handling time during office hours | Cloudadpt
Calculating handling time during office hours | Cloudadpt
From time to time, I stumble upon data that have a starting and an ending time. It could be opportunities in a CRM system, time between an email arrived in you mailbox until it was responded to or a …
·flip.it·
Calculating handling time during office hours | Cloudadpt
Showing DAX Expressions When Using Power BI Datasets (Live) — Havens Consulting
Showing DAX Expressions When Using Power BI Datasets (Live) — Havens Consulting
Video by: Reid Havens Learn how to display DAX expressions in the description tooltip - when hovering over the measure in the fields list. This can be applied to all measures easily and effortlessly using Tabular Editor . Related Content External Tool - Tabular Editor External Tool
·havensconsulting.net·
Showing DAX Expressions When Using Power BI Datasets (Live) — Havens Consulting
Deep dive into measure filters in Power BI Desktop - SQLBI
Deep dive into measure filters in Power BI Desktop - SQLBI
When you use a measure as a filter in a Power BI visual, the DAX code generated might show a different behavior whether the measure is part of the values sh
·sqlbi.com·
Deep dive into measure filters in Power BI Desktop - SQLBI
Variables in DAX | Purple Frog Systems
Variables in DAX | Purple Frog Systems
Variables can simplify your DAX code, help with debugging and help improve performance. To use variables in your DAX measure you need to declare a variable using the VAR keyword, give the variable a name, and then assign an expression to the variable. You can use multiple variables in a measure but when using variables […]
·purplefrogsystems.com·
Variables in DAX | Purple Frog Systems
Variables in DAX - Excelerator BI
Variables in DAX - Excelerator BI
Earlier this week I did a live stream event.  I put out a poll and asked people to tell me what topic they wanted me to talk about.  The options were Calculated Columns vs Measures Tips for Excel users moving to Power BI Using Variables in your DAX The overwhelming [...]Read More »
·exceleratorbi.com.au·
Variables in DAX - Excelerator BI
Using ALLEXCEPT versus ALL and VALUES - SQLBI
Using ALLEXCEPT versus ALL and VALUES - SQLBI
ALLEXCEPT is a handy DAX function to retrieve all the columns of a table except for some. When used as a CALCULATE modifier, its behavior is less intuitive
·sqlbi.com·
Using ALLEXCEPT versus ALL and VALUES - SQLBI
Comparing Events in Power BI - Excelerator BI
Comparing Events in Power BI - Excelerator BI
Today I am sharing another of those videos where I show you how I have built out my COVID report for Australia http://xbi.com.au/ca   The live report is running a few weeks ahead of my blog videos, so that is why you will see features in the live report that I [...]Read More »
·exceleratorbi.com.au·
Comparing Events in Power BI - Excelerator BI
Be Careful When Filtering for Blanks in DAX — ehansalytics
Be Careful When Filtering for Blanks in DAX — ehansalytics
It is often the case in Power BI you need to filter your data to include or exclude rows where there are blanks. Be careful though, because you might get unexpected results. Consider this table:
·ehansalytics.com·
Be Careful When Filtering for Blanks in DAX — ehansalytics