Power BI

Power BI

9059 bookmarks
Custom sorting
Power BI Tutorial: How to Create a Star Schema Model in Power BI and Power Pivot Using Power Query | business intelligist
Power BI Tutorial: How to Create a Star Schema Model in Power BI and Power Pivot Using Power Query | business intelligist
Click Here to download this Tutorial file Very often our analysis starts with a flat data set that contains all of the pertinent columns in a single table that looks like the one above. As we can s…
Power_BI_tips·businessintelligist.com·
Power BI Tutorial: How to Create a Star Schema Model in Power BI and Power Pivot Using Power Query | business intelligist
Using DAX to retrieve tabular data
Using DAX to retrieve tabular data
Data Analysis Expressions (DAX), originally the formula language for PowerPivot workbooks, can also be used within the MDX query window of SSMS to directly access data from a tabular SSAS database, an in-memory database that uses the xVelocity analytics engine and compression. Robert Sheldon shows how easy it is to retrieve data from a tabular database.
Power_BI_tips·simple-talk.com·
Using DAX to retrieve tabular data
I Need Beta Testers
I Need Beta Testers
Today’s post isn’t of a technical nature, although it does have a pretty long technical background… I’m now at the point where I need beta testers for a new add-in I’m planning to release. What Does the Add-in Do? In … Continue reading →
Power_BI_tips·excelguru.ca·
I Need Beta Testers
Creating Current Day, Week, Month And Year Reports In Power BI Using Bidirectional Cross-Filtering And M – Chris Webb's BI Blog
Creating Current Day, Week, Month And Year Reports In Power BI Using Bidirectional Cross-Filtering And M – Chris Webb's BI Blog
One very common requirement when creating a Power BI report is the ability to apply a filter for the current day, week, month, quarter or year. There are several ways of implementing this: you coul…
Power_BI_tips·blog.crossjoin.co.uk·
Creating Current Day, Week, Month And Year Reports In Power BI Using Bidirectional Cross-Filtering And M – Chris Webb's BI Blog
Re: Refresh Date (Manual refresh)
Re: Refresh Date (Manual refresh)
There are three options:   There are two ways to write a measure that returns the most recent date / processing date in your data model.   1. If you have a data(transaction) table Most Recent Transaction = CALCULATE( MAX(Transactions[Date]), ALL(Transactions) ) 2. If you have a calendar table - ther...
Power_BI_tips·community.powerbi.com·
Re: Refresh Date (Manual refresh)
Cartesian Product Joins (for the Excel person) - The Ken Puls (Excelguru) BlogThe Ken Puls (Excelguru) Blog
Cartesian Product Joins (for the Excel person) - The Ken Puls (Excelguru) BlogThe Ken Puls (Excelguru) Blog
While I was at the PASS BA conference in San Jose, CA last week, I got an email from a reader asking if Power Query could create a Cartesian Product join. Now I’m an Excel guy, and I’d never heard … Continue reading →
Power_BI_tips·excelguru.ca·
Cartesian Product Joins (for the Excel person) - The Ken Puls (Excelguru) BlogThe Ken Puls (Excelguru) Blog
April 2016 Power Query Update - The Ken Puls (Excelguru) BlogThe Ken Puls (Excelguru) Blog
April 2016 Power Query Update - The Ken Puls (Excelguru) BlogThe Ken Puls (Excelguru) Blog
The April 2016 Power Query Update was just released for Office 365 subscribers, and I can confirm that it is available to the First Release customers, as I’ve already got it installed.  (If you’re on a later branch it may … Continue reading →
Power_BI_tips·excelguru.ca·
April 2016 Power Query Update - The Ken Puls (Excelguru) BlogThe Ken Puls (Excelguru) Blog
Building a Parameter Table for Power QueryThe Ken Puls (Excelguru) Blog
Building a Parameter Table for Power QueryThe Ken Puls (Excelguru) Blog
letParamSource = GAIDs[Content],RaramRow = Table.SelectRows(ParamSource,each([Parameter]=ParameterName)),Value=if Table.isEmpty(ParamRow)=truethen nullelse Record.Field(ParamRow{0},"Value"),inValueletSolutionPath = fnGetParameter("File Path"), Source = Folder.Files(SolutionPath & "Data"),#"Combined Binaries" = Binary.Combine(Source[Content]),#"Imported CSV" = Csv.Document(#"Combined Binaries",null,",",null,1252),#"First Row as Header" = Table.PromoteHeaders(#"Imported CSV")in#"First Row as Header"
Power_BI_tips·excelguru.ca·
Building a Parameter Table for Power QueryThe Ken Puls (Excelguru) Blog