For some reasons many users withing my organization are not able to access Power BI online service and shows error as "Uanble to read application metadata". More details in the screen capture attached. Any resolution from Microsoft would be highly appreciated as we are around 60 K + users across globe. Thanks in advance.
Could not access Power BI Online Service
filter the data in the dataflow using sharepoint online list as a datasource.
We have a sharepoint online list as a datasource where we have records 15 columns and 1000 records in the list..
Requirement is to display only 5 columns and need to use the filter condition where IS_Active="Yes".
My question is can we filter the data in the dataflow.. if yes, what's are steps ..
Strange Question About Dataset
Hello. Please help me with this question:
This is on e question from the test
Can't find out where can I see the dataset name. Thanks in advance
"Use the drop-down menus to select the answer choice that completes each statement based on the information presented in the graphic."
While adding a report in Sharepoint channel the filter pane is not hidden
HI Team,
Previously when I was sharing report in Microsoft team channel then filter pane was already hidden.
But from 1 month the filter pane is visible in teams however filter pane is hidden in power bi web app as expected.
I don't want to show filter pane in Teams channel.
Can some one suggest.
Premium Capacity Dataset Evictions
Hi Guys,
Lately we ave been observing a lot of dataset evictions in premium capacity. What could be the reason for this?
I thought due to memory pressure the evictions are happening and therefore removed large size dataset from the Premium Capacity.
The memory utilization is not more than 50% of available and still the evictions are happening.
This wasn't the case few weeks back.
Not sure what wrong has happened which is causing the evictions.
The refreshes are also scattered and does not create any pressure at any point of time.
Can somebody please suggest on this.
Usage metrics report
Hi,
I have one question: the new usage metric report - why cannot be shared with users anymore?
Also, when the user presses the View usage metrics report button what is appearing is the old look, but with no data, even though it has selected the new look.
Do you know any workaround so that the user can access this report? I really need this option to be available.
Thank you!
Melissa
How to validate source of a report?
Hello everyone,
let's assume someone is new to the company and does not know where reports are uploaded/published from.
If the file is from OneDrive, the hourly refresh is possible, this should not be a selectable option when it is published via PBI Deskotp for example. Is there somethinh within the file settings or somewhere else where to check this out? Additonally, what is happening if someone is publishing a file called like one that is uploaded via OneDrive? The OneDrive refresh should be not possible anymore, right? -> as the connection should be cut.
Thanks in advance!
Analyze in Excel connection error today
I'm able to retrieve Power BI data with Analyze in Excel every day.
But it shows an error message that cannot connect to https://api.powerbi.com today.
The service status is normal.
does anyone encounter the same issue?
Data gateway for multiple users
I have the following situation:
User A publishes a Power BI desktop model (model_A) that pulls data from SQL Server X
User B publishes a Power BI desktop model (model_B) that pulls data from SQL Server X
in order to enable Scheduled Refresh, a Data Gateway is needed. A few questions:
1. Do you need just one Data Gateway?
2. Do you Download the Power BI Gateway standard mode and install it on the computer with the SQL Server X?
3. Does it matter whose e-mail address the Gateway is under?
4. Do you need to add users e-mail addresses to the Gateway?
Thanks for any help.
Power BI python script env change worked for PowerBI Desktop but not work for app.powerbi.com
Hi, I used python script as data source. At first, it gave errors, i researched and find that it is beacuse of python version. So I loaded older version of python then set the new directory as home directory and it worked on my local.
After that, I uploaded my report to app.powerbi.com, then I wanted to schedule refresh. However, during editing credentials it gives error because of it does not use my new home directory, it still tries to run the code on the previous home directory and gives the same error when I get before setting new environment.
the error starts with "Failed to update data source credentials: ADO.NET: Python script error. C:\Users\Ertu\anaconda3\lib\site-packages\numpy\__init__.py:140:" . Address mentioned in the error is old home directory.
How can I solve this?
Thank you.
Power BI data Cleaning verify data point value has increased over last data point.
I have multiple data points that are totalized values, at times there is times a data is missed. I am trying to find a way to verify that each data point is greater than the one prior and then if missing data point is found, the data point is corrected by taking the next good reading and the prior good reading and then dividing the value by the number of missed points to get the change each data point and adding this to the prior good point to fill in the missing data. There is 3 data fields that would have to be used in the data point classification. Date, name and value. There are multiple Names in the name column.
I have been looking at R and the Library MICE to do this, but cannot figure it out.
Connection closed when using the Invoke-PowerBIRestMethod to refresh dataset
We have a PowerShell script that uses the "Invoke-PowerBIRestMethod" to force a dataset to refresh. The script has been working without issues for the past several months. For the last week and a half, we have started receiving the error stating the connection was closed by the host. At first it was very random but then in the last couple of days, the error is occurring consistently.
We pass in the workspace GUID, dataset GUID, and the file path that stores the password for the user.
I have included a portion of our script (it uses parameters to pass in the workspace GUID, dataset GUID, and the file path that stores the password for the user) and the full error message below.
Does anyone have any insights as to what the issue could be?
Thanks,
----------------------------------------------------------------------------------------------------------
Script:
param( [string] $WSIDAdmin, [string] $DSIDRefresh, [string] $PBIKEY )
Set-ExecutionPolicy Unrestricted
$passwordFile = $PBIKEY
$username = "EXXXX@xpo.com"
$EBASecurityURL = 'groups/' + $WSIDAdmin + '/datasets/' + $DSIDRefresh + '/refreshes'
$password = Get-Content $passwordFile | ConvertTo-SecureString -asPlainText -Force
$credential = New-Object System.Management.Automation.PSCredential ($username, $password)
Connect-PowerBIServiceAccount -Credential $credential
$MailFailureNotify = @{"notifyOption"="MailOnFailure"}
Invoke-PowerBIRestMethod -Url $EBASecurityURL -Method Post -Body $MailFailureNotify }
Full error message:
{System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host at System.Net.Sockets.Socket.EndReceive(IAsyncResult asyncResult) at System.Net.Sockets.NetworkStream.EndRead(IAsyncResult asyncResult) --- End of inner exception stack trace --- at System.Net.TlsStream.EndWrite(IAsyncResult asyncResult) at System.Net.ConnectStream.WriteHeadersCallback(IAsyncResult ar) --- End of inner exception stack trace --- at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar) --- End of inner exception stack trace --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.PowerBI.Commands.Common.PowerBISettings.d__6.MoveNext()} Message : One or more errors occurred. Data : {} InnerException : System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host at System.Net.Sockets.Socket.EndReceive(IAsyncResult asyncResult) at System.Net.Sockets.NetworkStream.EndRead(IAsyncResult asyncResult) --- End of inner exception stack trace --- at System.Net.TlsStream.EndWrite(IAsyncResult asyncResult) at System.Net.ConnectStream.WriteHeadersCallback(IAsyncResult ar) --- End of inner exception stack trace --- at System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult) at System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult ar) --- End of inner exception stack trace --- at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) at Microsoft.PowerBI.Commands.Common.PowerBISettings.d__6.MoveNext() TargetSite : TResult GetResultCore(Boolean) StackTrace : at System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification) at Microsoft.PowerBI.Commands.Common.PowerBISettings..ctor(String settingsFilePath) at Microsoft.PowerBI.Commands.Common.PowerBICmdlet.GetDefaultInitFactory() at lambda_method(Closure ) at System.Management.Automation.CommandProcessor.Init(CmdletInfo cmdletInformation) HelpLink : Source : mscorlib HResult : -2146233088
Invoke-PowerBIRestMethod -Url groups/03752544-651f-4269-b117-92bba89fd007/datasets/99b9b70b-509c-4a66-a8f4-0e4eb4d175da/refreshes-Method Post -Body
Connect-PowerBIServiceAccount -Credential System.Management.Automation.PSCredential
No Subscribtion for Default Browser Language
Hi All, recently I cant add new subscribtions. I get the following error message: unfortunately there is a problem. But when I go to Settings --> Language --> English (instead of Default Browser Language) it works. I use the microsoft Edge Browser. Does someone know why this happen? 😐 Many thanks
Data Source Credential Error - Freshdesk API - Power BI Service
We have a PBI report that is connected to the Freshdesk API and uses Basic Authentication. The report works great when refreshing locally from PBI desktop; however, we get an error when trying to set up the Data Source Credentials in the Power BI Service.
Here is a snippet from the PBI desktop file that is refreshing properly:
The function that pulls from the API is using RelativePath and populating default parameters for the call.
Any help on resolving this error would be greatly appreciated!!!!
Data loading
Hi All,
I need your help. I have extracted some data from using api " https://api.covid19india.org/districts_daily.json" and customized to my requirement. However when click on " close & apply" it is taking significant amount of time to load the data. I have cancelled this actvitiy many times and at the same time i have also given 5-6 hrs to load this information. It still says WIP. Any clue on reson behind this? Or how can we identify how long does this need to load the entire data.
Thanks
Sudha
How to Refresh Oracle Cloud Database From Power BI Service without Data Gateway
Do I need to setup data gateway to refresh oracle cloud database, really ??
I am able to connect Oracle cloud database from Power BI Desktop, However after publishing it to Power BI Service, its asking to setup Data Gateway and refresh failed?
can someone guide me with the steps. could not find any documentation about connection setting for oracle cloud databases and then data Refresh from Power BI Service.
Thanks
Export Matrix table to excel
Hi,
I created a Matrix table in Power Bi Desktop and when I try to export it to Excel from the Power Bi Service I get a different format.
Is it possible to have the same format as defined in Power Bi desktop (Matrix Table)
Thanks for the help
exporting List of Workspaces and all users to excel
Hello,
is there a way to export list of All work spaces and memebrs under those workspaces to excel
Currently there is an option in Power BI Admin Portal to export only Workspace ID name and descritpion
I am also tyring to get all Member owners Id under worksapce.
Thanks
Dynamic Level Security - Confusing with the process
Im currently working on Dynamic Security.
It all makes sense in desktop. You go to Security - Manage roles
and against the table with your email address in it create for example [EmailAddress] = USERPRINCIPALNAME()
All great because you only need to set one rule up
However when you publish into Service, You need to go to settings - Security and then basically, individually add every email into members.
This is obviously very time consuming, especially when you have hundreds of users and people are leaving and joining all the time.
I thought dynamic security was supposed to stop you having to individually add email addresses?
Web.content not refreshing on service
Hi everyone,
I have this working for me on Desktop, and not on service.
I have read this article, but doesn't seem to help. https://blog.crossjoin.co.uk/2016/08/23/web-contents-m-functions-and-dataset-refresh-errors-in-power-bi/
I'm grateful for any help in advance