premium capacity
7 TopicsCome procedere con licenza Premium
Buongiorno, ho preso una licenza Power Bi Premium. Come faccio a condividere (solo visualizzazione) le mie dashboard/report con i miei colleghi con Power Bi free? Di cosa ho bisogno? La capacità premium si attiva automaticamente? Grazie per l'aiuto SebastianoSolved1.3KViews0likes5CommentsExpand Dates in Large Data Set - PowerQuery and Dax
I have a large data set in a proper star schema. However, i'm struggling with some reports out of it. I'll explain what i'm currently doing, and hopefully someone can tell me a better way (or more elegant) way to accomplish something similar. Data set: There's many more tables that have proper relationships (Aprox 30 more), but for the purpose of this exercise, that's all we need. Most of the work happens in the ResourceActualDetail table it looks like this (with some columns deleted): ResourceAllocationId AllocationPercentage EndDate StartDate 794 1 4/1/2018 0:00 2/25/2018 0:00 795 1.15 3/4/2018 0:00 2/25/2018 0:00 795 1.0875 3/11/2018 0:00 3/4/2018 0:00 795 1 4/1/2018 0:00 3/11/2018 0:00 796 1.05 3/4/2018 0:00 2/25/2018 0:00 797 0.725 3/4/2018 0:00 2/25/2018 0:00 1531 1 3/11/2018 0:00 2/25/2018 0:00 1721 1 4/1/2018 0:00 2/25/2018 0:00 Desired Output: ResourceAllocationId AllocationPercentage EndDate StartDate Date 794 1 4/1/2018 0:00 2/25/2018 0:00 2/26/2018 0:00 794 1 4/1/2018 0:00 2/25/2018 0:00 3/4/2018 0:00 794 1 4/1/2018 0:00 2/25/2018 0:00 … 794 1 4/1/2018 0:00 2/25/2018 0:00 4/1/2018 0:00 Notice the 7 day increments. And the same for every ResourceAllocationID so that I can graph it like so: (error in Graph dates, should be with 7 day increments). Where there is a different line for each Resource (connected through relationships to ResourceAllocation and ResourceActualDetail). Even if we can get it to a point where we can do that for each ResourceAllocationId I can figure out the rest 🙂 Current Approach: These data tables are quite large already(~1M rows) , and my approach only has bloated that. Trying to do everything as close to the source, this what I came up with: Let Source=PowerBI.Dataflows(null), ... #"Changed Type" = Table.TransformColumnTypes(ResourceActualDetail1,{{"EndDate", type number}, {"StartDate", Int64.Type}}), #"Added Custom" = Table.AddColumn(#"Changed Type", "Dates", each List.Numbers([StartDate],([EndDate]-[StartDate])/7,7)), #"Expanded Dates" = Table.ExpandListColumn(#"Added Custom", "Dates"), #"Changed Type1" = Table.TransformColumnTypes(#"Expanded Dates",{{"Dates", type datetime}, {"EndDate", type datetime}, {"StartDate", type datetime}}) in #"Changed Type1" Essentially, I change the StartDate and EndDate fields to numeric Values and then I calculate the beginning of each week before i switch back all those values to Date type. This part of the query doesn't fold, so I cannot take the advantage of the PowerFlow to do it. It also makes each refresh very slow (should be refresed multiple times a day). Any suggestions or ideas?? Obviously looking for the most efficient way to achieve this so that it won't take many resources (I do have a premium instance). Thanks!1.1KViews0likes2CommentsPBIRS to PBI Premium - Has anyone made the switch?
Has anyone here started off with Power BI Report Server but has now decided to switch over to Power BI Premium because of the breadth of new features Microsoft is offering with it, especially in the past year or so and what's planned for the future. For my company, PBIRS was an easy first step as we had an SQL Server Enterprise license and it essentially came free with it. We run PBIRS as primarily the visualization layer with SSAS/SSIS/SQL Server forming the backend infrastructure. However, now with all the new features being introduced in PBI Premium and not in PBIRS, I'm starting to think it would be a good idea to move to PBI Premium. I do need justify the potential additional costs though so trying to get a sense of how to go about it. Is there a good feature showcase video/blog post that would cover all the goodness of premium and appeal to C-level execs? Has anyone taken that leap and can share their experience? Are there any downsides to moving to PBI Premium? There isn't a trial option so has anyone followed any other approach to try things out before purchasing premium? Any inputs, thoughts will be much appreciated and I'm sure will help others who might be thinking of making the switch too. Thanks in advance!Solved1.2KViews0likes2CommentsPaginated Report Error
Hi, I have 2 Paginated reports in a Premium Workspace and the admin has allocated 30% of the workload to Paginted report, still, I keep getting the error that enough resources have not been allocated to render the report. The premium node is a P2 16v core type. Any ideas or suggestion on how I can solve this particular issue.951Views0likes2CommentsHow do I get Paginated Reports to work if I currently have the free version of Report Server?
Hi, It seems almost impossible to find much information on this specific question. My company currently has the free version of Report Server, I have downloaded the Report Builder application but have realised that I need to connect to a Dataset on the Report Server. Currently I don't seem to have this option and I am wondering if the barrier is due to an Admin option which needs selecting or if, as is explained in multiple articles for Paginated Reports for Power BI Service, we need to purchase a 'Premium' Report Server capacity to have the capability to run Paginated Reports on Report Server? Many Thanks in advance.655Views0likes1CommentPurchasing Premium Capacity
We are currently in the process of purchasing a P2 premium capacity. Before we submit the purchase order we want to make sure we have budgeted for everything we need. Out with the cost for premium and whatever number of Pro license we need to develop and publish content, is there anything else we should be aware of that will incur a financial outlay that needs budget for?479Views0likes0Comments