Re: Can you remove workspaces from PowerBI Embedded VIA REST
There's no API to delete a workspace, check REST Operations. Try to navigate to the workspace collection panel following this link and delete the workspace from the Azure UI.
View ArticleRe: Can you remove workspaces from PowerBI Embedded VIA REST
thank you. I can see the workspace collection panel. It's showing the total amount of workspaces and the list of workspaces. However when I click on any workspace, nothing happens. It turns blue and...
View ArticleRe: Please! Help me make my custom visual.
, You will need to learn TypeScript and Less first. For tips about debugging your custom visual, see the debugging guide.
View ArticleRe: ERROR: Authorization_RequestDenied - Insufficient privileges to complete...
, You may need to contact the administrator. See https://azure.microsoft.com/en-us/documentation/articles/active-directory-integrating-applications/ for more information.
View ArticleRe: ERROR: Authorization_RequestDenied - Insufficient privileges to complete...
Found another sample walkthrough that by-passed all the need for creating the Azure Active Directory and registering the app with AAD here:...
View ArticleRe: How to define dataViewMappings for multiple tables?
, As mentioned at https://github.com/Microsoft/PowerBI-visuals/blob/master/Capabilities/DataViewMappings.md, Each valid mapping will produce a DataView, but currently we only support performing one...
View ArticleAre you a Data Scientist?
Dear Business Intelligence Professional:I am a doctoral learner under the direction of Dr. Thomas Schaefer in the School of Business and Technology at Capella University. I am conducting a research...
View ArticleNew Custom Visuals from scratch
Hi I want to create a new visuals, i have followed the PowerBI Articles, i can create a new pbiviz folder and with few json files. Can you please explain me where i need to write the scripts and how...
View ArticleRe: How to define dataViewMappings for multiple tables?
Yep, my original custom view works and produces one dataView. Original code is shown below: "dataRoles": [ { "displayName": "Foo", "name": "foo", "kind": 2 }, {...
View ArticleRe: How to define dataViewMappings for multiple tables?
So it appears that I only get one DataView, as you mentioned. I tried printing out the dataViews in the update(), and dataViews[0] was the only valid one. The rest were null.
View ArticleRe: Publish a report to the web without any social links (facebook, twitter...)
+1 to turn this off. I've voted on the idea link, but this "Feature" now potentially breaks our security model through Share Point and embedding/hiding the URL inside a web part. Being able to share...
View ArticleUpdate dataset published via Power BI API
Hello guys! Today im doing some tests with Power BI API.I already downloaded the console sample and the web sample. And created some datasets/reports to test. I used the console app do do this, the...
View ArticleRe: formatting time value to hh:mm:ss
Well, to use certain functions you must Import your data and not use Direct Query
View Articlechange report data sets programmatically
We have the following scenario we’re trying to support:Based on a user’s input our program generates result tablesThe program automatically creates an Azure SQL DB containing the result tablesWe...
View ArticleRe: Live Filtering in Chart
Hi Use Below link for the same. https://msdn.microsoft.com/en-us/library/dn877544.aspx With the help of above link you can create your own filters , You can embed your dashboard to web. thanks Abhi.
View ArticleRe: formatting time value to hh:mm:ss
Try a DAX as below.fmtCol = RIGHT ( "0" & INT ( TableName[Duration] / 3600 ), 2 )& ":"& RIGHT ( "0"& INT ( ( TableName[Duration] - INT (TableName[Duration] / 3600 ) * 3600 ) / 60 ), 2...
View ArticleRe: How to authenticate web app/UWP app for seeing power bi reports only by...
What is the authentication in your web app? If Azure AD, then I think you can embeded the reports in your application with Power BI REST API. The Row Level Security should work.Otherwise, you can...
View ArticleRe: New Custom Visuals from scratch
, It is well explained at https://powerbi.microsoft.com/en-us/documentation/powerbi-custom-visuals-getting-started-with-developer-tools/. Double check Inside the visual project and Package your visual...
View ArticleRe: ERROR: Authorization_RequestDenied - Insufficient privileges to complete...
, Glad to hear that. If your problem has been resolved, you may share the solution and mark it as answer so that other community members might gain benefits.
View ArticleRe: Update dataset published via Power BI API
You can do the update by re-importing the new pbix file.There's an argument nameconfilict for PostImportWithFileAsync, and as per this github sample, the argument value "Overwrite" can be used to...
View Article