Power BI

Power BI

9059 bookmarks
Custom sorting
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 …
Power_BI_tips·datachant.com·
Book Excerpt: Appending Worksheets from a Workbook - DataChant
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
Power_BI_tips·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))...
Power_BI_tips·community.powerbi.com·
Re: Create tables based on all Query Parameters