Re: Separated graphs per user details in web application
Hi, yeah my model looks like your picture you posted below your comment, problem is I didnt find any info how I can dynamically change my data from server side according to some conditions.
View ArticleRe: Power BI embed sample
hi, thank you!i've created a workspace, i just don't understand\know how to import a power bi into this workspace.can you please help me?i know i can make it with the provision sample but i can't build...
View ArticleRe: Embedding filtered report into CRM form
Hi Oliver, We are also working with the costumer and we are considering the same scenario as you described. I was wondering if you had any progress with this? Is it possible to do something like this...
View ArticleRe: Power BI embed sample
these are the errors i get when trying to build the solution:and then when trying to run the provision console app(the file is exist)please someone can help me? thanks!
View ArticleRe: Problem with Selection in custom visualization
thanks. But, my requirement is to have a time slicer that can slice my data from one time to other time . and power BI dosen't have such time slicer.
View ArticleNeed help on Custom Visual
Hi Team!I've been trying to customize the Gantt Chart custom visual on PowerBI. There are a couple of requriemetns that we need to fulfill. One of those is to be able to assign colors to different...
View ArticleRe: Power BI embed sample
Hi , I didn't use that sample project, so if you have read topic of powerbi cli, i will assume that you havecreated 1 workspace collection in your Azure account => (had accesskey of workspace...
View ArticleRe: 403 Forbidden error occured when using REST API
I'm having the same error message. We are using an angular2 SPA to interact with our REST API services. We have a report service that we would like to use to call the Power BI REST API service...
View ArticleRe: Power BI in ASP Net MVC
Hello How do you get your token ? From the authorizationcode ( with your powerBI account ) ? I used this code to get a report : string baseUri = "https://api.powerbi.com/v1.0/myorg/reports"; string...
View ArticleRe: 403 Forbidden error occured when using REST API
On my end, I was doing it wrong. If your goal is to simply trying to provide access to PowerBi reports to your users, and want to authenticate non-interactively, then you may consider grabbing using...
View ArticleDisplay Percent rather than Count on Sunburst Visualization Tooltip
Is there a way on the Sunburst visualization when you hover over the 2nd level of grouping that it can show % of total instead of count? I have seen it be possible to do %GT when doing a quick calc on...
View ArticleRe: Print as PDF from Power BI Embedded
Check this one https://github.com/Microsoft/PowerBI-JavaScript/wiki/Embedding-Basics#print-a-report
View ArticleRe: Need help on Custom Visual
, Based on my research , you may take a look at this thread and change your code accordingly.
View ArticleRe: "The remote server returned an error: (403) Forbidden." error when...
The code looks good. Ensure the accessToken is valid. You can try to access the API with POSTMAN with the accesstoken. For testing purpose, you can also get a valid token with the help of Chrome dev...
View ArticleRe: Retrieving the count of duplicate coordinates
, It seems that you may create a calculated column or measure.
View ArticleLoop API request and append results to one table
I use API as a source and it gives me the following result: result = Listtotal_results = 11829total_pages = 592 Each page contains 20 results. My source code ends with the "page=1", "page=2" parameter....
View ArticleWHERE statement
Hello Everyone, I'm trying to obtain the following information. SELECT * FROM fileWHERE field LIKE '6980%' And then produce a new field. Am I missing something in the syntax? Thanks! - Babinsky
View ArticleRe: WHERE statement
One way in "M" would be to use Text.StartsWith like so: let Source = Csv.Document(File.Contents("C:\temp\powerbi\like.csv"),[Delimiter=",", Columns=2, Encoding=1252, QuoteStyle=QuoteStyle.None]),...
View ArticleRe: WHERE statement
Another lazy option would be to use the Power Query [Add conditional Column] where you have access to a GUI based rule builder which offers options such as "Contains" to help populate a new column.
View ArticleRe: WHERE statement
Of course if you are using SQL you could change your statement to be something like SELECT * , CASE WHEN field LIKE '6980% THEN something ELSE somethingelse END As MyNewColFROM file
View Article