Power Query

Power Query

947 bookmarks
Custom sorting
Creating Power Query Functions | The Microsoft MVP Award Program Blog
Creating Power Query Functions | The Microsoft MVP Award Program Blog
Editor’s note: The following post was written by SQL Server MVP Rafael Salas Creating Power Query Functions You have seen or started using Power Query for Excel by now. If not you have been missing one of the greatest tools of the new Self-Service Business Intelligence offering Power BI. Power Query has a wide range...
·blogs.msdn.microsoft.com·
Creating Power Query Functions | The Microsoft MVP Award Program 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"
·excelguru.ca·
Building a Parameter Table for Power QueryThe Ken Puls (Excelguru) Blog
ImkeF/pquery
ImkeF/pquery
pquery - A collection of functions for use in Excel Power Query
·github.com·
ImkeF/pquery
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...
·community.powerbi.com·
Re: Refresh Date (Manual refresh)
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…
·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