Power BI

Power BI

9059 bookmarks
Custom sorting
Transform Columns with List.Zip
Transform Columns with List.Zip
This post continues series of articles about M Function List.Zip ( first post, second post). Table.T...
·bondarenkoivan.wordpress.com·
Transform Columns with List.Zip
Book Excerpt: Appending Worksheets from a Workbook - DataChant
Book Excerpt: Appending Worksheets from a Workbook - DataChant
I am excited to share with you an excerpt from the draft manuscript of my book. You can also add it to your list in Amazon here. I expect to publish more excerpts in the coming months, so please stay tuned, and subscribe to DataChant. Appending Worksheets from a Workbook Excerpted from the draft manuscript …
·datachant.com·
Book Excerpt: Appending Worksheets from a Workbook - DataChant
Power Query - Consecutive Days - PowerPivotPro
Power Query - Consecutive Days - PowerPivotPro
Hello P3 World! My name is Krissy Dyess and I have had the most amazing experience working as a full-time consultant at Power Pivot Pro since April 17, 201
·powerpivotpro.com·
Power Query - Consecutive Days - PowerPivotPro
Adding Try Results is Trying - The Ken Puls (Excelguru) Blog
Adding Try Results is Trying - The Ken Puls (Excelguru) Blog
I was playing around with a scenario this morning where I was adding try results together in order to count how many columns were filled with information. What I needed to do kind of surprised me a little bit.
·excelguru.ca·
Adding Try Results is Trying - The Ken Puls (Excelguru) Blog
Dynamic option sets in PowerBI
Dynamic option sets in PowerBI
I recently had a requirement from a customer who needed to filter reports based on global option sets. The kicker for this requirement was t...
·crmviking.com·
Dynamic option sets in PowerBI
Re: Pass parameters to Adcanced Editor
Re: Pass parameters to Adcanced Editor
I found this and it works: let Source = Sql.Database("DB_SERVER", "DB_NAME", [Query="exec STORED_PROCEDURE_NAME'"&Date.ToText(Date.From(DateFrom), "yyyy-MM-dd")&"', '"&Date.ToText(Date.From(DateTo), "yyyy-MM-dd")&"' , 62", HierarchicalNavigation=true]) in Source And it works! Thank you guys
·community.powerbi.com·
Re: Pass parameters to Adcanced Editor
Re: Create tables based on all Query Parameters
Re: Create tables based on all Query Parameters
I did it in one table instead of creating new table for each character's id. We need one table and one function. Here's full solution: 1. Create function getCharacter(id): let Source = (id as text) = let Source = Json.Document(Web.Contents("https://swapi.co/api/people/" & id))...
·community.powerbi.com·
Re: Create tables based on all Query Parameters