Power BI

Power BI

9062 bookmarks
Custom sorting
Webinar Followup: Be a Full Stack #PowerBI Jedi - DataChant
Webinar Followup: Be a Full Stack #PowerBI Jedi - DataChant
In today’s post, I am sharing a follow-up to my webinar, that will allow you to refresh the queries, and enjoy the support of scheduled refresh on Power BI service. During the webinar (you can watch it here, if you missed it), I created a custom function that paginates over multiple pages, and was asked …
Power_BI_tips·datachant.com·
Webinar Followup: Be a Full Stack #PowerBI Jedi - DataChant
Re: Possible Analytics function: dynamic Total column in chart with USA States?
Re: Possible Analytics function: dynamic Total column in chart with USA States?
, Drag [State] from the calculated table to Axis and measures below to Value. Measure = VAR s = SELECTEDVALUE ( 'Table'[State] ) RETURN IF ( s = "Total", SUM ( ValueTable[Regular jobs] ), CALCULATE ( SUM ( ValueTable[Regular jobs] ), FactTable[State] = s ) ) Mea...
Power_BI_tips·community.powerbi.com·
Re: Possible Analytics function: dynamic Total column in chart with USA States?
Create Dynamic Forward Forecasts in Power BI with DAX
Create Dynamic Forward Forecasts in Power BI with DAX
Have you ever wanted to create automatic forecasts based on historical information? In the past, this was relatively difficult to do using tools like Excel but I’m going to show you in this video t…
Power_BI_tips·blog.enterprisedna.co·
Create Dynamic Forward Forecasts in Power BI with DAX
Net Work Days
Net Work Days
Recreates the NETWORKDAYS function from Excel with some bonus measures and one that needs fixed or demonstrates a bug/documentation glitch. NetWorkDays calculates the number of days between two dates sans weekends. NetWorkDays = VAR Calendar1 = CALENDAR(MAX(NetWorkDays[created date]),MAX(NetWor...
Power_BI_tips·community.powerbi.com·
Net Work Days
Dynamic TopN made easy with What If Parameter
Dynamic TopN made easy with What If Parameter
In this post I am going to demonstrate how to create a Dynamic TopN slicer using a What-If Parameter. This will allow your user to simply use the Slicer/Slider to view the TopN values and as a bonus if the user slides it to zero, it will display everything! Who doesn't like something that is easy to...
Power_BI_tips·community.powerbi.com·
Dynamic TopN made easy with What If Parameter
Power BI Desktop: Custom Aggregations, Formatting and Performance Indicators (Part 1)
Power BI Desktop: Custom Aggregations, Formatting and Performance Indicators (Part 1)
This multi-part tutorial blog is geared to help BI Analysts create versatile Scorecards with KPIs as well as to facilitate the business reporting transition from Excel, SSRS or other apps to Power BI Desktop. In this initial installment, I will illustrate how to include more than one aggregation a...
Power_BI_tips·community.powerbi.com·
Power BI Desktop: Custom Aggregations, Formatting and Performance Indicators (Part 1)
Re: Calculate average of values between two boundaries
Re: Calculate average of values between two boundaries
Give this a shot EHT = VAR myupper = [upper] VAR mylower = [lower] RETURN AVERAGEX ( VALUES ( 'STA Core'[Total TouchTime for the record] ), CALCULATE ( AVERAGE ( 'STA Core'[Total TouchTime for the record] ), FILTER ( 'STA Core', ...
Power_BI_tips·community.powerbi.com·
Re: Calculate average of values between two boundaries
Re: SLA % Measures
Re: SLA % Measures
Hi , To achieve your requirement, you can try a measure with following expression: SLA % = CALCULATE ( COUNT ( SLA[SLA] ), FILTER ( SLA, SLA[SLA] = "Breached" ) ) / CALCULATE ( COUNT ( SLA[SLA] ), FILTER ( SLA, SLA[SLA] "No Target" ) ) Thanks, Xi Jin.
Power_BI_tips·community.powerbi.com·
Re: SLA % Measures
Re: Most probable value
Re: Most probable value
Yes, I have some Mode measures in the Quick Measures Gallery: https://community.powerbi.com/t5/Quick-Measures-Gallery/Mode-Single-Column/m-p/359150 https://community.powerbi.com/t5/Quick-Measures-Gallery/Mode-Multiple-Columns/m-p/359148
Power_BI_tips·community.powerbi.com·
Re: Most probable value
Staying Current on Power BI Dashboards - SQLServerCentral
Staying Current on Power BI Dashboards - SQLServerCentral
Power BI Dashboards can be kept current using simple DAX formulas in your data models. Save yourself time and energy by understanding how dashboard tiles work on PowerBI.com and what can be done to se
Power_BI_tips·sqlservercentral.com·
Staying Current on Power BI Dashboards - SQLServerCentral
Dynamic relationships based on the selection
Dynamic relationships based on the selection
Got an interesting question recently where someone wanted to be able to switch the relationships automatically based on which slicer was selected. Take the following example: Here we have the same …
Power_BI_tips·kasperonbi.com·
Dynamic relationships based on the selection
To TREATSAS or not to
To TREATSAS or not to
This post describes approaches how to virtual relationships between tables can be established using the DAX function TREATAS() and also approaches how to create physical relationships instead.
Power_BI_tips·minceddata.info·
To TREATSAS or not to
Highlighting Scatter Charts in Power BI using DAX
Highlighting Scatter Charts in Power BI using DAX
Another Friday, another tip. Power BI has undergone a lot of innovative updates over the years, but my favorite one has been a combination of the cross-filtering & highlighting capabiliti…
Power_BI_tips·sqljason.com·
Highlighting Scatter Charts in Power BI using DAX
Re: Assign unique identifier based on multiple attributes
Re: Assign unique identifier based on multiple attributes
Hi This calculated table might be close. Table = VAR DistinctValues = SUMMARIZECOLUMNS('Table1'[Case],'Table1'[Team]) VAR Final = SUMMARIZECOLUMNS('Table1'[Case]) RETURN ADDCOLUMNS( Final , "Group" , CONCATENATEX( FILTER(DistinctValues,[Case]...
Power_BI_tips·community.powerbi.com·
Re: Assign unique identifier based on multiple attributes
Covariance
Covariance
From Wikipedia on Covariance: https://en.wikipedia.org/wiki/Covariance In probability theory and statistics, covariance is a measure of the joint variability of two random variables.[1] If the greater values of one variable mainly correspond with the greater values of the other variable, and the sam...
Power_BI_tips·community.powerbi.com·
Covariance
Context transition, expanding tables and CALCULATE
Context transition, expanding tables and CALCULATE
Hi, I'm gaining a better appreciate for DAX and context. There is one topic that still has me a little puzzled. Appreciate some help to reaffirm my understanding (or corrections are welcome) and help with the bits I don't quite get yet... I think I understand what is happening in my calculate...
Power_BI_tips·community.powerbi.com·
Context transition, expanding tables and CALCULATE
Filter that will Select the Closest Related Predicted Value
Filter that will Select the Closest Related Predicted Value
Hi Guys, I've Created a Graph in power bi that has the values on the y-axis, and the month number on the x-axis, something that looks similar to the below sample chart. Basically, what I need to do, is to find the "Prediction Grade" that most closely resembles the "Actual Value", and have the ...
Power_BI_tips·community.powerbi.com·
Filter that will Select the Closest Related Predicted Value
In Common
In Common
Given a table of data called "Students" such as: Teacher Student Teacher A Student 1 Teacher A Student 2 Teacher A Student 3 Teacher A Student 4 Teacher B Student 1 Teacher B Student 5 Teacher B Student 7 Teacher B Student 8 Teacher C Student 3 Teacher C Student 4 Teacher C Student 7 Teacher C Stu...
Power_BI_tips·community.powerbi.com·
In Common
Using DAX Magic For Variable Forecasting
Using DAX Magic For Variable Forecasting
I often have inputs I know today and want to “run them out” into the future applying certain parameters along the way to create a projection. I’m in finance, so my needs will almost always have a fina…
Power_BI_tips·powerpivotpro.com·
Using DAX Magic For Variable Forecasting
Using variables to split up your calculations
Using variables to split up your calculations
Got a DAX question recently that I solved using variables. When I walked them through the solution someone exclaimed “I didn’t know you can do this with variables!”. Variables are a great way…
Power_BI_tips·kasperonbi.com·
Using variables to split up your calculations
M vs DAX: Chopping Broccoli vs Planning a Menu
M vs DAX: Chopping Broccoli vs Planning a Menu
Last week, I had the pleasure of recording some video with Bert Wagner about Power BI. In the video, I got to use one of my favorite analogies for M versus DAX: Are you chopping broccoli or planning a…
Power_BI_tips·sqlgene.com·
M vs DAX: Chopping Broccoli vs Planning a Menu
The Great Function Project - Part 2 - PowerPivotPro
The Great Function Project - Part 2 - PowerPivotPro
My name is Mathew Herring Jack, and I am a member of Traditional Excel Users Anonymous. As a Traditional Excel User, I could not stop copying and pasting downloaded reports. Even when my manager diagn…
Power_BI_tips·powerpivotpro.com·
The Great Function Project - Part 2 - PowerPivotPro
Power BI Desktop: Custom Aggregations, Formatting and Performance Indicators (Part 2)
Power BI Desktop: Custom Aggregations, Formatting and Performance Indicators (Part 2)
This multi-part tutorial blog is geared to help BI Analysts create versatile Scorecards with KPIs as well as to facilitate the business reporting transition from Excel, SSRS or other apps to Power BI Desktop. In part 1 of this tutorial, I illustrated how to include more than one aggregation and cu...
Power_BI_tips·community.powerbi.com·
Power BI Desktop: Custom Aggregations, Formatting and Performance Indicators (Part 2)