Power BI

Power BI

9059 bookmarks
Custom sorting
Announcing Power BI Solution Templates | Microsoft Power BI Blog | Microsoft Power BI
Announcing Power BI Solution Templates | Microsoft Power BI Blog | Microsoft Power BI
Today we’re happy to announce the public preview of solution templates for Power BI. This project is launching with two templates: a sales management solution template for Dynamics CRM and a sales management solution template for Salesforce.
·powerbi.microsoft.com·
Announcing Power BI Solution Templates | Microsoft Power BI Blog | Microsoft Power BI
Best Practices Using SUMMARIZE and ADDCOLUMNS | SQLBI
Best Practices Using SUMMARIZE and ADDCOLUMNS | SQLBI
Everyone using DAX is probably used to SQL query language. Because of the similarities between the Tabular data modeling and the relational data modeling, there is the expectation that you can do the
·sqlbi.com·
Best Practices Using SUMMARIZE and ADDCOLUMNS | SQLBI
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...
·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 ([...
·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 ...
·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...
·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
·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!
·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.
·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...
·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...
·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
·blog.gbrueckl.at·
Dynamic ABC Analysis in PowerPivot using DAX
The M Code Behind Power BI Parameters
The M Code Behind Power BI Parameters
For me the most exciting new feature in Power BI in a long while is the appearance of Query Parameters for data loading. We have been promised an official blog post explaining how they work (althou…
·blog.crossjoin.co.uk·
The M Code Behind Power BI Parameters