premium
24 TopicsUsing Copilot in Fabric/Power BI
I have a question about using Copilot for Fabric/Power BI in Premium capacities (P2). Does this tool utilize resources from my premium capacity or resources from Microsoft servers to function? I want to enable this feature, but I don't want to negatively impact my company's performance.Solved772Views0likes3CommentsDo I still need a Pro/Premium license if I have a Report Server subscription?
I'd like to share my dashboards with internal members of the department but was told by my organization head that sharing permissions can't be granted to me because this isn't a feature. They also mentioned they only support SQL connections, but I'm not sure if they have a SQL Enterprise license as part of the report server subscription. From what I've seen, it looks like dashboards are being shared internally (members log in via their company credentials to view the dashboards). If I have the report server subscription, do I still need a pro/premium license to share dashboards?Solved2.7KViews0likes8CommentsPower BI Report Server On Premise Licensing
Hello, I'm sorry if my question has been already adressed but as far as I know, I didn't the answer to my question. We have purchased a Power BI Premium license A4/P1 SKU and we have already installed a Power BI Report Server on Premise on a virtual machine which has 4 vcore. We would like to install another instance of Power BI Report Server on another virtual machine in order to make clear separation of use between two separates entities in our organization (obviously we'll need also separates databases but that is not a problem). What are the limitations in terms of licensing ? For example, is our Premium license enable for 8 vcore and so we can install another Power BI Report Server Instance in a 4 vcore VM ? Thanks all for your help, Alex.Solved1.8KViews0likes2CommentsShare content with Premium per user license
Hello, In my organization we are testing license Premium per user and we want to be sure about the sharing capabilities of it. If I have a Premium per user license and I create reports and dataflows in a Premium Workspace, to who can I share the reports generated there? I only want to share the view, the other users do not need to edit the report. As far as I checked, I can only do this with other Premium per user license users. Is there any other possiblity? Thank you!Solved13KViews0likes7CommentsPower BI Report Builder: Premium Per User and Premium necessary?
Hello all, I have a customer that wants to distribute personalized reports for 100+ employees on a daily, weekly or monthly basis. The reports are to be sent via e-mail in a pdf format, showing the performance of each employee for a specified period of the time. All of this should preferably be done automatically. 1) Does my customer need to buy a Premium Workspace, or is it sufficient to go with a PPU and distribute the reports from there? 2) Is it possible to automatize the generation and distribution of 100+ personalized reports using PPU and Power BI Report Builder? Kind regards, JSolved2.5KViews0likes2CommentsWhat is the benefits Power BI report Server Premium and SQL Server Enterprise/Standard/Developer Ve?
Hi folks, I need Clarity about Power BI Server Premium and SQL Server Enterprise Edition. what are the benefits will get Install both(PBI and SQL server Enterprise)? and is possible to Install Power BI Premium with Standard Edition what are the benefits will get? Regards Dinesh DSolved944Views0likes1CommentLicenses Requirements for Viewing
I have looked through the community and posts, so please excuse me if I did not find the answer where someone has already asked. Background: I have a paid Pro account (myself and 1 other member). All report viewers are signed up for free accounts. Reports are on a shared workspace. Issue: 1 viewer can no longer view the reports shared with him. He signed up back in November for the free account. It is now telling him to upgrade to Pro. This is the begining of our Power BI reporting, so we have shared roughly 10-15 reports with about 10 people (all with free users) since Oct - now. (So Far) There is only the user getting this message. I have been doing research to try and figure this out, but the information that we (myself and IT) have come across seems to be contradictary. Most of what I can find, says that in order for me (Pro user) to share my reports the viewer would have to be a Pro user as well. I feel like this can't be as then we would have to set up 100ish Pro accounts just to look at a report. Also, I found this chart that shows Pro user sharing reports with Free users. But how do I accomplish this? Can I be a Pro user and set up the workspace as Premium then share to Free users? Can I be a Pro user Premium (per user) and share to free users? https://docs.microsoft.com/en-us/power-bi/admin/service-premium-what-is#dedicated-capacities What is the best way & most cost efficient way for me to share reports with others who will only be viewing the reports? Thank you!!!!Solved1.6KViews0likes2CommentsExpand 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.1KViews0likes2Comments