Power BI

Power BI

9059 bookmarks
Custom sorting
Using Recursion to Solve Hex to Decimal Conversion - Microsoft Power BI Community
Using Recursion to Solve Hex to Decimal Conversion - Microsoft Power BI Community
Introduction Neither Power Query nor DAX supports Excel functions for performing alternative number base conversions to decimal, such as HEX2DEC. Solving this issue in Power Query or DAX becomes problematic due to the lack of traditional looping capabilities within these languages. However, custom f...
Power_BI_tips·community.powerbi.com·
Using Recursion to Solve Hex to Decimal Conversion - Microsoft Power BI Community
Re: Calculate Difference from Previous 'Date' Dyna... - Microsoft Power BI Community
Re: Calculate Difference from Previous 'Date' Dyna... - Microsoft Power BI Community
Cool question - using the query editory you can sort the table and add an index so that each row has a distinct number (0,1,2,3, etc).  Here's the formula you want to write ... I broke it out into pieces.   Total = SUM(Total) Total - Previous Period = VAR thisperiod = MAX(Index) RETURN CALCULATE ([...
Power_BI_tips·community.powerbi.com·
Re: Calculate Difference from Previous 'Date' Dyna... - Microsoft Power BI Community
Power BI: Merge Query with "M" - TechNet Articles - United States (English) - TechNet Wiki
Power BI: Merge Query with "M" - TechNet Articles - United States (English) - TechNet Wiki
To the best of my knowledge, queries do not update their dependencies, would make a nice Idea though. You might consider digging into the Advanced Editor and finding a way to combine your queries into a single query. I have a blog article on this "Power BI: Merge Queries with M". You should be able ...
Power_BI_tips·community.powerbi.com·
Power BI: Merge Query with "M" - TechNet Articles - United States (English) - TechNet Wiki
Solved: Re: Filter rows to show latest sale for each clien... - Microsoft Power BI Community
Solved: Re: Filter rows to show latest sale for each clien... - Microsoft Power BI Community
You can use a  calculate table or can create aformula similar like this one     Calculated table formula:   NewTable = ADDCOLUMNS ( SUMMARIZE ( Sales; Sales[ClientID]; Sales[Amount] ); "Last Date"; CALCULATE ( MAX ( Sales[Date] ) ) )  The formula assumes that for the same date the client has...
Power_BI_tips·community.powerbi.com·
Solved: Re: Filter rows to show latest sale for each clien... - Microsoft Power BI Community
Solved: Re: group by a column and the group item to be sho... - Microsoft Power BI Community
Solved: Re: group by a column and the group item to be sho... - Microsoft Power BI Community
this works as a Measure and you actually don't need the FILTER funciton (I was filtering out Names) Measure = CONCATENATEX ( VALUES ( Table2[Name] ), Table2[Name], ", " )   In a Table Visualization turn off the Totals as in the picture Otherwise Total row will concatenate ALL names
Power_BI_tips·community.powerbi.com·
Solved: Re: group by a column and the group item to be sho... - Microsoft Power BI Community
How to Design Visually Stunning Reports | Microsoft Power BI Blog | Microsoft Power BI
How to Design Visually Stunning Reports | Microsoft Power BI Blog | Microsoft Power BI
Can a Power BI report be a work of art? It is if it was created by Power BI Community member Miguel Myers. Miguel, is a Data Scientist as well as a Graphic Designer, and in a webinar last week he shared some of his tips for creating reports and dashboards that are as beautiful as they are informative. Watch the webinar in its entirety on-demand, or read on for a few highlights!
Power_BI_tips·powerbi.microsoft.com·
How to Design Visually Stunning Reports | Microsoft Power BI Blog | Microsoft Power BI
Power BI Synonyms, Take Q
Power BI Synonyms, Take Q
Power BI Synonyms is a great feature. In this post you learn how to add synonyms to a Power BI Desktop model and how they affect your Q&A query experience.
Power_BI_tips·biinsight.com·
Power BI Synonyms, Take Q
Marketing Analytics - Microsoft Power BI Community
Marketing Analytics - Microsoft Power BI Community
The marketing analytics report represent an example of a Power BI report provided as part of a marketing analytics solution.  This solution helps you unify your data, enirch it with third-party data, and unlock the insights it contains.  That enables you to take smart action. The solution shatters d...
Power_BI_tips·community.powerbi.com·
Marketing Analytics - Microsoft Power BI Community
Retail Store Sales Dashboard - Microsoft Power BI Community
Retail Store Sales Dashboard - Microsoft Power BI Community
This Power BI solution show cases a powerful self-service Sales Dashboard for a famous retail store.   The dashboard consists of following 5 reports:   1. Current Month Performance - A view of KPIs for the current month and for tracking the progress towards target achievement. 2. Historical Performa...
Power_BI_tips·community.powerbi.com·
Retail Store Sales Dashboard - Microsoft Power BI Community
Dynamic ABC Analysis in PowerPivot using DAX
Dynamic ABC Analysis in PowerPivot using DAX
An ABC Analysis is a very common requirement for for business users. It classifies e.g. Items, Products or Customers into groups based on their sales and how much impact they had on the cumulated
Power_BI_tips·blog.gbrueckl.at·
Dynamic ABC Analysis in PowerPivot using DAX