tutorial requests
61 TopicsPower Apps Map showing incorrect live location (always near Africa)
Hi everyone, I’ve built a Power Apps map to display data points that consist of latitude and longitude values. In addition, I want users to be able to see their live location, so they can immediately view the data points closest to them. From what I’ve learned through the community, the only way to achieve this (without using a location-based filter) is to use a Power Apps map and then embed it into a Power BI report. Everything works as expected, except when the app asks to enable location access, the “live location” always shows somewhere near Africa, regardless of where the user actually is. I’ve now tested this on multiple phones, and the issue persists. Has anyone experienced this or found a solution? Thanks in advance!7.2KViews0likes14CommentsZooming in/out on a Power BI report using an iPhone Issue
Issue: When zooming in/out on a Power BI report using an iPhone, the page reloads data and resets to its original state, causing poor user experience. How can we prevent data reloading during zoom? Are there additional solutions to avoid data reloading during zoom on iOS? Could this be a bug in Power BI’s mobile rendering? Any workarounds or official fixes?Solved3.2KViews0likes5CommentsUser!Language in paginated reports doesn't work in Mobile Apps
Dear all, For some reason, User!Language doesn't detect the correct language of the report in the Mobiel Apps. What I did was change my phone language to French and region to Canada. With PBI reports on mobile, the USERCULTURE() did return "fr-CA" and but the User!Language for paginated reports still returned "en-US". I tried the desktop browser and it worked fine when I changed the browser locale settings for both types of reports. Any advices on this, I need to set up auto-localization for these reports.Solved3.5KViews0likes4Comments- 5.3KViews0likes2Comments
Power BI Embedded with Flutter
We have been able to Embed Power BI reports using the Power Bi Embedded - A SKU in our Web applications built on Python. On similar lines, we want to embed Power BI reports in Mobile Apps built using Flutter framwork. Any pointers twards the same? SUnce Flutter is based on DART, we want to know what should be the right approach for embedding Power BI in Flutter based apps.9.1KViews0likes3CommentsEmbedding Base64-encoded PDFs in Power BI reports doesn't work on iPhone.
My Power BI solution converts a PDF link to binary data, encodes it in base64, and splits the base64 string into 26,000-character chunks using the Split function. DAX then combines these chunks for display in a PDF viewer. While this approach works on desktops and Android phones, it encounters issues on iPhone with some pdf. Since these PDFs have varying sizes, large file size can be ruled out as the cause. The key indicator of an iPhone display issue is this: If a PDF appears clear and readable at 100% zoom on a desktop browser, it will likely display correctly on iPhone. Conversely, if the PDF appears blurry on the desktop at 100% zoom, it's unlikely to display on iPhone. My Power Querry Code: Link to binary: Web.Contents([urls]) Binary to base64: Binary.ToText([binary], BinaryEncoding.Base64) Split base64: Splitter.SplitTextByRepeatedLengths(26000) My DAX function for combine: base64 = pdf[base64.1]&pdf[base64.2]&pdf[base64.3]&pdf[base64.4]&pdf[base64.5]&pdf[base64.6]&pdf[base64.7]&pdf[base64.8]&pdf[base64.9]&pdf[base64.10]&pdf[base64.11]&pdf[base64.12]&pdf[base64.13]&pdf[base64.14]&pdf[base64.15]&pdf[base64.16]&pdf[base64.17]&pdf[base64.18]&pdf[base64.19]&pdf[base64.20]&pdf[base64.21]&pdf[base64.22]&pdf[base64.23]&pdf[base64.24]&pdf[base64.25]&pdf[base64.26]&pdf[base64.27]&pdf[base64.28]&pdf[base64.29]&pdf[base64.30]&pdf[base64.31]&pdf[base64.32]&pdf[base64.33]&pdf[base64.34]&pdf[base64.35]&pdf[base64.36] Update: - PDF on Power Bi desktop will not display on Iphone: - PDF on Power Bi desktop will display on Iphone:5KViews0likes7CommentsClickable link from PowerBI Dashboard that opens a dashboard at PowerBI Mobile App
Hi All, I need help on how to use this; Create a link that opens only on a device that has the Power BI mobile app installed . My objective is to create a report navigation page that open a report at different app service. Currently, the hyperlink at the report will open a new tab(either Google Chrome/Safari/etc) even when opened using PoBi mobile app. I want when the user click the hyperlink, the report will open inside the PoBi app instead of opening at new internet tab. I read the documentation at Microsoft Learn. I tried follow, but the link does not work. This is the documentation : https://learn.microsoft.com/en-us/power-bi/consumer/mobile/mobile-apps-deep-link-specific-location This is example of my link : mspbi://app/OpenReport?ReportObjectId=c8b52627-75b3-4842-9998-71e7783702a0&GroupObjectId=56bb997e-1e18-487e-aa50-2bf337b8347c&reportPage= ReportSection037fb4f48099e819ad36 Previously, I put the link inside the dashboard but it become non-clickable. I even tried to put as action on a button but still does not work. I tried <a href =""> as an option, but to no avail. Need guidance on this. Thanks.Solved3.9KViews0likes1Comment