Re: Error when loading DirectQuery PBIX file: Datasource has no credentials,...
I think I might be hitting a different issue specific to PBI embedded. My server is already set to allow all azure services through the firewall and is still throwing a NotFound error in the...
View ArticleRe: Error when loading DirectQuery PBIX file: Datasource has no credentials,...
I also got the NotFound error yesterday. I tried again today and now it works. Are you able to set your connection string in the following line: await...
View ArticleTweaking an existing Custom Visual: the change is successful, but doesn't...
Hi there! I found a great R visual and needed to tweak it a little. I downloaded it from Github, altered an R script. I got to the point that suits me for now (I hope to keep improving) and I can see...
View ArticleCustom Visual HTLM formatted text viewer - Missing Menu Selection option in...
Greetings Power BI Community, I finished a custom visual that will render HTML formatted text in a visual. It works great in the Service/online version of Power BI, however it breaks in the Desktop...
View ArticleDAX problem calculating Prior Fiscal YTD
Hi everyone,I'm trying to calculate a measure based on prior fiscal year to date numbers. My dates table has every calendar date, however the measure I'm using is aggregated by week ending date in the...
View ArticleCalculate based on criteria - non-payers from registered users list
I have a Power BI model with two tables: one is a "registered user" table and the second is a "user transaction" table. "registered user" table has basic information about a user, e.g. user ID, name,...
View ArticleRe: Calculate based on criteria - non-payers from registered users list
Hi , what about creating two measures. One will be counting total count of Registered users and the second distinctcount of User_ID column in Transactio table. Then by subtracting these two measures...
View ArticleRe: Calculate based on criteria - non-payers from registered users list
Thank you. That makes sense and seems to work. I created a measure as follows: NonPayers = COUNT(MemberInfo[Code]) - DISTINCTCOUNT(Contributions[Code]) The problem now is how to plot this over months....
View ArticleRe: Calculate based on criteria - non-payers from registered users list
Thank you. That makes sense and seems to work. I created a measure as follows: NonPayers = COUNT(MemberInfo[Code]) - DISTINCTCOUNT(Contributions[Code]) The problem now is how to plot this over months....
View ArticleRe: streaming combine data
HI Peter, I am following the same example, but I got some errors while I am wokring in python, I have no experience with pyton. I got below error"Traceback (most recent call last):File...
View ArticleRe: 401 Unauthorized getting background image of embedded report
Thanks for your feedback. I can somewhat reproduce the issue mentioned in your case. The difference in my test is, even I created and published the report, the image can't be rendered.I've escalated...
View ArticleRe: RLS with embedded
It is possible, actually you don't worry about RLS, just embed the report. Create a report with RLS and publish the report to Power BI Service.Settng up the Roles in Power BI Service.Embed the report...
View ArticleCreate Custom visuals - Set bar color
Hi, I am creating a custom Bar chart. I want to change the bar color from the color palette. Each bar should have a different color based on selection. let colors =...
View ArticleRe: Tweaking an existing Custom Visual: the change is successful, but doesn't...
, The source code may not up to date. It works when I make some changes to a new R Powered Custom Visual.
View ArticleRe: 401 Unauthorized getting background image of embedded report
Thank you for reporting this.The issue has been fixed and it's making its way to production servers, the fix expected to be avilable online by Jan-18.
View ArticleRe: How to change the bar color/axis label color in custom visuals
, Here is the solution. https://github.com/Microsoft/PowerBI-visuals-sampleBarChart/issues/5
View ArticleRe: How to change the bar color/axis label color in custom visuals
Hi I am not getting the exact solution that I want. How color palette object has been declared?let colorPalette: IColorPalette = host.colorPalette;I am getting error "Property 'reset' is missing in...
View ArticleRe: Create Custom visuals - Set bar color
, The API Version has been updated to 1.3.0. Based on my test, you may refer to the following corresponding code snippet.let colorPalette: IColorPalette = host.colorPalette;selector:...
View ArticleRe: How to change the bar color/axis label color in custom visuals
, I've also replied your new thread. Follow the link below to update API version.https://github.com/Microsoft/PowerBI-visuals/blob/master/tools/usage.md#updating-visuals-api
View ArticleRe: Create Custom visuals - Set bar color
Hi , I am using this code also but I am getting the following error error TYPESCRIPT /src/visual.ts : (82,13) Type 'powerbi.extensibility.IColorPalette' is not assignable to type...
View Article