dax

dax

1079 bookmarks
Custom sorting
DAX query view introduces new INFO DAX functions
DAX query view introduces new INFO DAX functions
DAX query view, released in public preview last month, in the December 2023 Power BI Desktop release has exciting updates including the new INFO DAX functions and improvements to the Update model CodeLens.
·powerbi.microsoft.com·
DAX query view introduces new INFO DAX functions
KPI trend indicators on Core Visuals - EXPLORATIONS IN DATA STORYTELLING WITH POWER BI
KPI trend indicators on Core Visuals - EXPLORATIONS IN DATA STORYTELLING WITH POWER BI
With the February and March 2023 Desktop releases comes more features enabling us to enhance our KPI visualisations out of the box. This article talks specifically to the DAX function LINEST() and the new Subtitle and Dividers formatting options. For a simple enhancement, we can add the divider to KPI Cards, without title and subtitle,… Continue reading KPI trend indicators on Core Visuals
tommypuglia·kerrykolosko.com·
KPI trend indicators on Core Visuals - EXPLORATIONS IN DATA STORYTELLING WITH POWER BI
Calculating the trend of a Chart using DAX ( Smoothing Moving Average)
Calculating the trend of a Chart using DAX ( Smoothing Moving Average)
Calculating the trend of a line chart can be possible using the Analytics tab under the format section of the chart. What if we need to store this calculation and reuse it or show it as a separate chart? Actual Chart as below The trend of the chart The first question is about calculating the Read more about Calculating the trend of a Chart using DAX ( Smoothing Moving Average)[…]
tommypuglia·radacad.com·
Calculating the trend of a Chart using DAX ( Smoothing Moving Average)
Re: How to filter data from Dax
Re: How to filter data from Dax
Hi, This measure worksMeasure = COUNTROWS(FILTER(VALUES('Table'[ID]),CALCULATE(COUNTROWS('Table'),'Table'[status]="approve")=1&&CALCULATE(COUNTROWS('Table'),'Table'[status]="reject")=0)) Hope this helps.
tommypuglia·community.fabric.microsoft.com·
Re: How to filter data from Dax
DAX Pareto Calculation - Phil Seamark on DAX
DAX Pareto Calculation - Phil Seamark on DAX
I always enjoy it when we get new DAX functions, especially so for the new set of WINDOW Functions recently added. As part of the April 2023 release of Power BI Desktop, we now have a RANK function and the ability to use a measure to control the order within the existing WINDOW function. The … Continue reading DAX Pareto Calculation
tommypuglia·dax.tips·
DAX Pareto Calculation - Phil Seamark on DAX
Tips for Debugging your DAX Code — ehansalytics
Tips for Debugging your DAX Code — ehansalytics
When trying to get your DAX measures to work correctly, there are a number of tools you can use to debug, which I will briefly mention, but not go into depth on. Instead, this post is about how to think about debugging your code. I am focusing on DAX here, but many of the methods would apply to an
tommypuglia·ehansalytics.com·
Tips for Debugging your DAX Code — ehansalytics
Speed up Distinct Count calculations in Power BI using Aggregations - Phil Seamark on DAX
Speed up Distinct Count calculations in Power BI using Aggregations - Phil Seamark on DAX
This article aims to show how you can speed up distinct count calculations in Power BI using the built-in user-defined aggregations feature. The user-defined aggregation feature in Power BI is designed to work with direct query models and usually gets used for calculations such as SUM, MIN, MAX etc. However, it can also work well … Continue reading Speed up Distinct Count calculations in Power BI using Aggregations
tommypuglia·dax.tips·
Speed up Distinct Count calculations in Power BI using Aggregations - Phil Seamark on DAX
New LINEST & LINESTX DAX functions
New LINEST & LINESTX DAX functions
In this blog post I describe the new DAX function, LINESTX in Power BI and test it in a brief example. With the February Power BI update, two new DAX statistics functions have been introduced: LINEST and LINESTX. The functions use the Least Squares method to calculate a straight line that best fits the data, then return a table describing the line. The data result from expressions evaluated for each row in a table.
tommypuglia·amalbenrebai.substack.com·
New LINEST & LINESTX DAX functions