Found 447 bookmarks
Newest
Understanding the TIMELINE in DAX Studio - Guy in a Cube
Understanding the TIMELINE in DAX Studio - Guy in a Cube
We brought Marco in to help explain the TIMELINE update within DAX Studio. This can help you understand performance a bit deeper when optimizing your DAX and models. This is one to watch! DAX Studio https://daxstudio.org Marco Russo Tweets by marcorus https://www.linkedin.com/in/sqlbi/ https://sqlbi.com Optimizing DAX Video Course https://www.sqlbi.com/p/optimizing-dax-video-course/
tommypuglia·guyinacube.com·
Understanding the TIMELINE in DAX Studio - Guy in a Cube
How to manage “Reporting Objects” in a Power BI Dataset — DATA GOBLINS
How to manage “Reporting Objects” in a Power BI Dataset — DATA GOBLINS
In this article, we tackle the growing issue of ‘report-specific objects’, dataset measures and tables created to fill specific report visual requirements, why they negatively impact self-service users, and best practices to mitigate this impact.
tommypuglia·data-goblins.com·
How to manage “Reporting Objects” in a Power BI Dataset — DATA GOBLINS
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
·kerrykolosko.com·
KPI trend indicators on Core Visuals - EXPLORATIONS IN DATA STORYTELLING WITH POWER BI
Capturing Power BI queries using DAX Studio
Capturing Power BI queries using DAX Studio
This article describes how to use DAX Studio to capture DAX queries generated by Power BI. Analyzing DAX queries can be helpful to better understand perform
·sqlbi.com·
Capturing Power BI queries using DAX Studio
Mean Time Between Failure (MTBF) and Power BI
Mean Time Between Failure (MTBF) and Power BI
Introduction Mean Time Between Failure (MTBF) is a common term and concept used in equipment and plant maintenance contexts. In addition, MTBF is an important consideration in the development of products. MTBF, along with other maintenance, repair and reliability information, can be extremely valuab...
·community.powerbi.com·
Mean Time Between Failure (MTBF) and Power BI
Re: Count duplicates with having constraint
Re: Count duplicates with having constraint
Try This Calculated Column Duplicates = VAR mycount = CALCULATE ( DISTINCTCOUNT ( TableName[surrogate] ), ALLEXCEPT ( TableName, TableName[Parent] ) ) RETURN IF ( TableName[Brand] = "ST", IF ( mycount = 1, "Pass", "Failure" ), "N/A" )
·community.powerbi.com·
Re: Count duplicates with having constraint
Best Approach to Two Dax Challenges?
Best Approach to Two Dax Challenges?
Greetings, I have a table of municipal water consumption records. I'm trying to create a monthly average of gallons used by residents. I need to filter the table by Rate Class = "Residential." Looks easy enough, but my DAX calcs seem wrong. Here's the DAX: Avg Monthly Vol Residential:=CALCULATE(...
·community.powerbi.com·
Best Approach to Two Dax Challenges?
DAX: Rollup value within a group
DAX: Rollup value within a group
Hi Community, I've one question, maybe a silly one, but I already wasted some time trying to solve the following requirement... I've the following very simple star schema model in my PBI file, and what I want to do is to roll up the value measure per Country Name... I'm able to roll up the value...
·community.powerbi.com·
DAX: Rollup value within a group
Re: Time difference between next row
Re: Time difference between next row
May be a MEASURE instead of a column would handle memory better. Try this MEASURE Time Difference Measure = VAR NextRow = CALCULATE ( MIN ( TableName[Date/Time] ), FILTER ( ALL ( TableName ), TableName[Date/Time] SELECTEDVALUE ( TableName[Date/Time] ...
·community.powerbi.com·
Re: Time difference between next row
De-Seasonalized Correlation Coefficient
De-Seasonalized Correlation Coefficient
This builds off of my original article here: https://community.powerbi.com/t5/Community-Blog/Correlation-Seasonality-and-Forecasting-with-Power-BI/ba-p/14147 and 's take on that approach here: https://community.powerbi.com/t5/Quick-Measures-Gallery/Correlation-coefficient/m-p/196274 To introduce...
·community.powerbi.com·
De-Seasonalized Correlation Coefficient
Detail Rows Documentation
Detail Rows Documentation
Detail Row Expressions Detail row expressions is one of the top new features of Analysis Services 2017 (1400 Compatibility Level) as it provides the equivalent of a drillthrough action for users to…
·insightsquest.com·
Detail Rows Documentation
Re: DAX Comparison Measure
Re: DAX Comparison Measure
Try this: [SubCategory Sales] = VAR CurrentSubCategory = VALUES ( ProductTable[Product Subcategory] ) RETURN CALCULATE ( SUM ( Sales[Sales] ), ALL ( ProductTable[Product Name] ), ProductTable[Product Subcategory] = CurrentSubcategory ) and this: [Category Sales] =...
·community.powerbi.com·
Re: DAX Comparison Measure
Start of Month DAX Calendar
Start of Month DAX Calendar
While on a recent project I needed to build a variation of the DAX date table. In my previous post, found here Creating DAX Date Tables I was built a date table for every day of the month for mult…
·powerbi.tips·
Start of Month DAX Calendar
Lineage in DAX
Lineage in DAX
Level: Intermediate–Advanced I have covered the topic of Lineage in DAX a few times in the past (within other articles). Today I thought I would write a single post dedicated to lineage. As you may kn…
·exceleratorbi.com.au·
Lineage in DAX
Re: Calculate Moving average of Attrition
Re: Calculate Moving average of Attrition
Hi , In this scenario, the formula below should work. :smileyhappy: _Release Count = CALCULATE ( COUNT ( 'Release Count'[Personnel Number] ), FILTER ( ALL ( 'Month Year'[Date] ), 'Month Year'[Date]
·community.powerbi.com·
Re: Calculate Moving average of Attrition
Computing same product sales in DAX - SQLBI
Computing same product sales in DAX - SQLBI
This article shows a technique in DAX to compute the sales volume of products that were available right from the beginning of a selected time period, ignori
·sqlbi.com·
Computing same product sales in DAX - SQLBI