powerbi-embedded

How to calculate Earned Premium between two dates till @AsOfDate and break it down by each month in DAX

北慕城南 提交于 2019-12-24 11:00:08
问题 I have Premium for a policy with TransactionEffectiveDate and TransactionExpirationDate . Is any way to write query in DAX that would take each premium amount and break it down by the month between those two dates. The @AsOfDate parameter will be the date the policy stops Earning. For Example: PolicyNumber WIC1000158-00 has Premium of $82,913 and TransactionEffectiveDate 1/5/2018 and TransactionExpirationDate 1/5/2019. which gives us total of 365 days of Policy life. Let see how much we

How do you get rid of the grey border with the report visuals with power bi embedded?

…衆ロ難τιáo~ 提交于 2019-12-22 11:15:17
问题 When i render the power bi visuals, I notice that there is a grey border on the right and left side of the image. Is there a way to get rid of that? It's awkward that the grey border is not effecting the top or bottom of the iframe. Thanks, Derek 回答1: Try something like this. (extracted from the powerbi-javascript sample). Pass the #reportContainer div as input to powerbi.embed and you should not see the inset borders <style> #reportContainer { width: 100%; height: 750px; background-color:

How to generate PDF output of powerbi embedded report

跟風遠走 提交于 2019-12-22 05:23:14
问题 I have a powerbi report embedded to my webpage. What I need is to add an "export" button to my page and export the report to the PDF when the button is clicked. How can I achieve this? People online advises using report.print() or window.print() , but both did not work for me. var reportContainer = document.getElementById('reportContainer'); var report = powerbi.embed(reportContainer, config); var report2 = powerbi.get(reportContainer); console.log(report); --returns the report console.log

Is there any way to embed power bi reports and dashboards in vb.net or C# desktop application with sql server 2008 database?

混江龙づ霸主 提交于 2019-12-19 12:01:18
问题 I have a vb.net desktop application with sql server 2008 database. I am currently using SSRS for reports but my client wishes to have visual data representation. Therefore I want to use Power BI dashboards. So what are the steps to embed power bi dashboards in vb.net application. 回答1: Yes, absolutely! As @David Browne said in his response, it's just a matter of loading something in a web browser. Generally, it doesn't matter what are your data sources - SQL Server or flat files, it's all the

How to pass parameter to PowerBI Embedded via embedded URL

拥有回忆 提交于 2019-12-18 16:34:25
问题 I have an IFrame which shows a PowerBI embedded Report that having world map. Can I pass a parameter to PowerBI Embedded via embedded URl to filter my report based on a specific country. Thanks 回答1: When you embed the report, add the following to the end of the iframe's URL: &$filter=tablename/fieldname+eq+'countryName' 来源: https://stackoverflow.com/questions/37986615/how-to-pass-parameter-to-powerbi-embedded-via-embedded-url

How to add Power BI reports in Android native app in 2019

不想你离开。 提交于 2019-12-18 09:25:52
问题 I am developing an Android application in which I should show Power BI reports and tiles with drill down. I Googled but still I am not able to find a proper documentation for same. I understand that there is a Rest API, but I cant find any documentation on exactly what happens after getting the data. I have seen other example/questions where they embed a web inside the app to show a dashboard, but I havent been able to see a full example/video working. Please help, thanks in advance. 回答1:

How to add Power BI reports in Android native app in 2019

浪子不回头ぞ 提交于 2019-12-18 09:25:04
问题 I am developing an Android application in which I should show Power BI reports and tiles with drill down. I Googled but still I am not able to find a proper documentation for same. I understand that there is a Rest API, but I cant find any documentation on exactly what happens after getting the data. I have seen other example/questions where they embed a web inside the app to show a dashboard, but I havent been able to see a full example/video working. Please help, thanks in advance. 回答1:

unauthorized error 401 for power reports embedding

旧巷老猫 提交于 2019-12-13 01:28:05
问题 I am trying to Embedding my Power Bi Reports in my MVC application using the following link https://docs.microsoft.com/en-us/power-bi/developer/embed-sample-for-customers and i am able to get the access_token but unable to retrieve the dashboards or reports based on Group Id because of 401 Unauthorized error. Let me know what I am doing wrong. 回答1: I faced the exact same issue during my Power BI Embedded implementation. The issue in my case was that adequate Permission were not granted for

powerbi js export summarized data Error: Cannot read property 'Underlying' of undefined

 ̄綄美尐妖づ 提交于 2019-12-11 15:26:26
问题 i am trying to use exportData(summarized) of powerbi.js and getting the following error. TypeError: Cannot read property 'Underlying' of undefined at r.<anonymous> (reportembed.bundle.min.js:22) at a (reportembed.common.bundle.min.js:16) at Object.next (reportembed.common.bundle.min.js:16) at n (reportembed.common.bundle.min.js:16) at reportembed.externals.bundle.min.js:659 at m.$digest (reportembed.externals.bundle.min.js:670) at reportembed.externals.bundle.min.js:673 at e (reportembed

RLS in Power BI Embedded (App Owns data) with Azure analysis service live connection

戏子无情 提交于 2019-12-11 08:29:43
问题 I am using Power BI Embedded (App owns data) version with Azure analysis service live connection. I want to implement RLS. when userlogged into website then I need to read the data security context(Eg: cutomer_id, service_id, etc.,), For this, I want to pass these values (Eg: cutomer_id, service_id, etc.,) to the azure analysis server instance and then use Role filtering in the anlalysis server instance to restrict the data. Can I read the passed values in the analysis server role filters.