DAX

DAX

1155 bookmarks
Custom sorting
Dynamic Data Label Calculation Groups
Dynamic Data Label Calculation Groups
One of the fundamental things missing from Power Bis visualisation capabilities is the ability to easily control data labels. Having to resort to hacks is not ideal but if good data visualisation i…
·tenfingerseddy.wordpress.com·
Dynamic Data Label Calculation Groups
How to Calculate Compound Rate in Power BI
How to Calculate Compound Rate in Power BI
Recently I had an interesting use case where I had to a compound calculation in Power BI. You can compound an interest rate for example, where you get a certain rate on your savings. Let's say 1% (which is at the time of writing ridiculously high, but bear with me). After 1 year, you get 1% interest
·sqlkover.com·
How to Calculate Compound Rate in Power BI
New OFFSET DAX function 🎉
New OFFSET DAX function 🎉
✨A new DAX function that is already available in the September release of #PowerBIDesktop, but was hidden in the last updates announced in September. ✨#OFFSET allows to make comparisons in context between two values, without writing extremely long and complex
·amalbenrebai.substack.com·
New OFFSET DAX function 🎉
Export your Power BI DAX measures using DAX Studio - A random blog about Business Intelligence
Export your Power BI DAX measures using DAX Studio - A random blog about Business Intelligence
Time to read: 5 minutes Have you ever wanted to search through your Power BI measures, calculated columns or calculated tables for a specific function or table/column reference? Or export your DAX logic for documentation purposes? If this is the case then this post is for you. As a Power BI dataset admin or author, ... Read more
·maxwikstrom.se·
Export your Power BI DAX measures using DAX Studio - A random blog about Business Intelligence
UNDERSTAND THE OUTPUT OF EVALUATEANDLOG FUNCTION OF TABLE EXPRESSIONS
UNDERSTAND THE OUTPUT OF EVALUATEANDLOG FUNCTION OF TABLE EXPRESSIONS
Last week, we learned how to interpret the output of the EvaluateAndLog function of scalar expressions. Albeit interesting, the new function would be much less useful if it could only return scalar…
·pbidax.wordpress.com·
UNDERSTAND THE OUTPUT OF EVALUATEANDLOG FUNCTION OF TABLE EXPRESSIONS
EVALUATEANDLOG AND DAX ENGINE OPTIMIZATIONS
EVALUATEANDLOG AND DAX ENGINE OPTIMIZATIONS
This is the fourth and the last article on the EvaluateAndLog function. While DAX developers were excited about the prospect of printing the values of a portion of a DAX expression, many of the ear…
·pbidax.wordpress.com·
EVALUATEANDLOG AND DAX ENGINE OPTIMIZATIONS
Building a fading bar chart with Calculation Groups
Building a fading bar chart with Calculation Groups
With conditional formatting and a few calculation groups it's possible building a fading bar chart, even assigning colors to categories by code.
·esbrina-ba.com·
Building a fading bar chart with Calculation Groups
DAX 1-Column Fusion - Phil Seamark on DAX
DAX 1-Column Fusion - Phil Seamark on DAX
One approach to optimise DAX queries is to focus on the number of Storage Engine (SE) calls generated by a query and look for ways to provide the same result using fewer SE calls. If a query takes 30 seconds to run and makes hundreds of SE calls, reducing the number of SE calls almost … Continue reading DAX 1-Column Fusion
·dax.tips·
DAX 1-Column Fusion - Phil Seamark on DAX
DAX Studio 3 released! - SQLBI
DAX Studio 3 released! - SQLBI
DAX Studio 3 has been released today. This new major version has a new user interface and user experience, providing a modern look and feel without losing a
·sqlbi.com·
DAX Studio 3 released! - SQLBI
Understand the Output of EvaluateAndLog Function of Scalar Expressions
Understand the Output of EvaluateAndLog Function of Scalar Expressions
This is the second article in a series on the introduction to the EvaluateAndLog function. As I explained last time, EvaluateAndLog can be used to print to the debug output the intermediate result …
·pbidax.wordpress.com·
Understand the Output of EvaluateAndLog Function of Scalar Expressions
How to effectively make and use rolling aggregations & rolling trends in Power BI — DATA GOBLINS
How to effectively make and use rolling aggregations & rolling trends in Power BI — DATA GOBLINS
Since the start of the COVID-19 crisis, we are bombarded daily with graphics depicting exponential and rolling trends. These analyses are a powerful way to reveal trends in variable, incomplete and discrete data; however, interpreting them is more difficult.
·waroftheseus.squarespace.com·
How to effectively make and use rolling aggregations & rolling trends in Power BI — DATA GOBLINS
Variables in DAX - SQLBI
Variables in DAX - SQLBI
Using variables in DAX makes the code easier to read, faster, and easier to debug. In this article, we discuss how and when to use variables, along with why
·sqlbi.com·
Variables in DAX - SQLBI
Hierarchies with dynamic levels in Matrix by Field Parameters
Hierarchies with dynamic levels in Matrix by Field Parameters
In a previous article about Field parameters, I spoke about using them in cooperation with Calculation groups (LINK). I used them to get specific measures for selected dimensions from the dimensions field.
·linkedin.com·
Hierarchies with dynamic levels in Matrix by Field Parameters
Introduce the DAX EvaluateAndLog Function
Introduce the DAX EvaluateAndLog Function
There is a hidden gem in the August 2022 release of Power BI Desktop: a secret new DAX function EvaluateAndLog that is not listed in the feature summary of the official blogpost. Yet this function …
·pbidax.wordpress.com·
Introduce the DAX EvaluateAndLog Function
Another advantage to Measure Tables
Another advantage to Measure Tables
Another reason why using a measure table in a Power BI model is a good idea
·greyskullanalytics.com·
Another advantage to Measure Tables
Controlling Calculation Items with RLS
Controlling Calculation Items with RLS
Controlling Calculation Items with RLS can't be done directly, but you can do it indirectly with another calculation group. This article shows you how.
·esbrina-ba.com·
Controlling Calculation Items with RLS
Rolling average with working days in DAX - SQLBI
Rolling average with working days in DAX - SQLBI
Rolling averages are a very common calculation used to smooth out charts. This article shows how to compute a rolling average taking into account only the w
·sqlbi.com·
Rolling average with working days in DAX - SQLBI
Rolling average with working days in DAX - SQLBI
Rolling average with working days in DAX - SQLBI
This article shows how to compute a rolling average (useful to smooth out charts) taking into account only the working days.
·sqlbi.com·
Rolling average with working days in DAX - SQLBI
Find Products That Did Not Sell - Goodly
Find Products That Did Not Sell - Goodly
Use products table to find missing values in the fact table. Find Missing Products that did not sell.
·goodly.co.in·
Find Products That Did Not Sell - Goodly
Conditional formatting with thresholds in Power BI
Conditional formatting with thresholds in Power BI
Conditional formatting is an easy way to highlight values so report users can receive quick insights on the status of key metrics. In this post, I will be showing a way to apply dynamic conditional formatting on visuals with set thresholds. This will...
·troubleshootbi.hashnode.dev·
Conditional formatting with thresholds in Power BI
Understanding the optimization of SWITCH
Understanding the optimization of SWITCH
The SWITCH function in DAX has been optimized over the years, and it is helpful to know what makes the optimization work best. The SWITCH function in DAX is widely used to define different execution paths depending on the condition of an expression. A very common case is when we want to check the sta
·flip.it·
Understanding the optimization of SWITCH