Re: Streaming Data - Wrong Time - Pyhon / Bash
Do you have that problem only when using Python? If so, may you post the python code? I doubt it is the datetime format in the sent JSON, an ISO 8601 format 2017-03-09T00:53:42Z shall work.
View ArticleRe: Problems updating Custom Visuals in Power BI Desktop
This is going to sound like a strange solution but i had the same problem and this is what i did to fix it: Find the GUID in your file. Everywhere you have references this GUID, increment the number...
View ArticleRe: currency conversion help please
You can use some measure like below. Check more details in the attached pbix.zipconverted sales = IF ( ISFILTERED ( conversionrates[To] ), SUM ( financials[sales] ) * MAX ( conversionrates[rate] ), SUM...
View ArticleRe: adding a filter to a measure
What is the relationship between the table NPDMetrics and the other two? I guess you can use RELATED/RELATEDTABLE.
View ArticleRe: Problems with a basic filter
The basic filter actually works in my test. Check my demo, replace the token and reportid with them in your case. <html><script...
View ArticleEditting an existing Custom Visual causes Icon to stop working
I'm still new at editting Custom Visuals. We are using the Timeline Slider V1.3.17 written by Microsoft but just needed some updates to how the years were displayed. After some initial trouble with...
View ArticleRe: Problems updating Custom Visuals in Power BI Desktop
Thanks Ross - Its worth a shot.
View ArticleRe: How is fast iteration coding done with a PBI Custom Visual?
Hi Sam (), Can you please clarify which one of these is implied by your response?The steps in my original post are currently the only way to iterate through code change cycles for custom visuals.You...
View ArticleRe: Problems updating Custom Visuals in Power BI Desktop
Fyi, someone from MS is currently attempting to help with this issue on another thread. I started this thread to try and consolidate this question and what appear to be two other related questions on...
View ArticleRe: Get Records from Table A that are not in Table B
What are those two tables' schema like? If they have the same column, you can use EXCEPT in SQL or in DAX. SQL SELECT column1,column2,column3 FROM Table1 EXCEPT SELECT column1,column2,column3 FROM...
View ArticleRe: PowerBI dashboard update linked to time period (e.g. year)
Try a measureMeasure = YEAR(TODAY())&" VS "&YEAR(TODAY())-1
View ArticleRe: How is fast iteration coding done with a PBI Custom Visual?
, I'm not one of the developers. I mean the way I know to update an exising custom visual is to run command pbiviz package by using the PowerBI command line tools (recommended). For custom visuals that...
View ArticleRe: Problems with a basic filter
I've narrowed it down to here (see below) for some reason the "targetWindow" value is not available HttpPostMessage.prototype.send = function (request, targetWindow) { if (targetWindow === void 0) {...
View ArticleVisual Gallery Update Question
So, I am using a component from the visual gallery and it gets updated. Do I need to install the new one? How do I know when they get updated? Thanks for the help!
View ArticleRe: Possible to update credentials via REST API?
is correct, I am looking at the Power BI.com API, not the PBI Embedded API. While 's code doesn't answer my question directly, it does provide some insight into the classes under-the-hood. I'm going...
View ArticleRe: R Control Chart
Thanks Ted, this is along the same lines, but I am interested more in an "xbar" chart and also looking for a simple R script to create a Pareto chart for my customers. Thank you for the scripts for the...
View ArticleUsing different roles to filter pages within a report
I'm buidling a report with multiple pages and I'm wanting to apply different roles to the different pages. The two roles would be Employee and Mentor, but would both pick up the username() of the...
View ArticleAzure REST API for VM performance
Hello, I am trying to find a way to monitor our virtual machine performance. Are there any tutorials that can wlak me through setting this up? Thank you, Chris
View ArticleRe: active directory
I found this post to be very clear about it as for an actual AD integration I think it is not available yet but I hope it is not far away especially since there is now an AAD pack which I think...
View ArticleRe: Possible to update credentials via REST API?
I am trying to reverse engineer what works in Power BI embedded and get it working in PowerBi.com. I have not found the secret to succsss yet, but I am getting closer. When I ran the code that works...
View Article