mobile
45 TopicsDynamic Inventory Reconciliation: Aligning Opening and Closing Balances in Power BI
I have created an Inventory Reconciliation report that includes a Year slicer. The report's main visual is a matrix with the following rows: Opening Inventory Purchases Sales Closing Inventory (Calculated) On-Hand Quantity The Closing Inventory (Calculated) is determined using this formula: Closing Inventory (Calculated) = Opening Inventory + Purchases - Sales The matrix has Months set on the Columns. For example, if the year 2023 is selected: January’s Opening Inventory is calculated using the following DAX formula: Opening Inventory (Q) = CALCULATE( [On-Hand Qty], PREVIOUSMONTH('Calendar (On-Hand)'[Dates]) ) For February, the Opening Inventory should use January’s Closing Inventory (Calculated) or the previous month's Closing Inventory. Currently, the Opening Inventory row uses its formula to calculate results, which might lead to inconsistencies. I believe the Opening Inventory should instead depend on the Closing Inventory (Calculated) from the previous month. What would be your solution?Solved1.4KViews0likes4CommentsMobile App Redirecting to Web Version of Report
Hello Community, I’m currently working with Power BI and have encountered an issue related to report navigation on mobile devices. I have two reports: Report 1 Report 2 In Report 1, I have a button that redirects to Report 2 using a URL. The issue arises when I use the Power BI mobile app: the URL opens Report 2 in the web version format instead of the mobile-optimized view. I’ve ensured that Report 2 is designed with the Phone Layout feature in Power BI Desktop, but it still doesn’t render correctly in the mobile app. Has anyone else experienced this issue, or can you provide any advice on how to ensure the mobile app opens the report in a mobile-friendly format? Thank you for your help!Solved1.8KViews0likes5CommentsA Typo for premium icon in Mobile app
A Typo for premium icon in Mobile app Hi, Team Power BI Mobile app version(iOS): 32.1 I have several workspaces with fabric capacity including trial. I create a workspace with F2 capacity and then I can find the premium icon(diamond). When I try to navigate workspaces in the mobile app, I can’t find the icon. It’s not synced. Thanks, HongSolved3.8KViews0likes4CommentsMobile app not showing arrow characters
I have a few card visuals showing arrows in the reference labels, these are corect shown in Power BI Desktop (june 2024) and in the service. But in the mobile app (both in landscape as portrait mode) the arrows are not shown correct. In desktop and the service: in the mobile app: The used Font is Segoe UI Size 12 The used characters are: VAR UpArrow = UNICHAR(129137) VAR DownArrow = UNICHAR(129139) I hope this is enough info to solve the issue. Best regards, Twan VerdonschotSolved3.3KViews2likes5CommentsMobile view is not being shown for embedded powerbi report
We have created a PowerBI report having both the desktop verion and mobile virson. Its showing desktop and pone view properly when we are testing at following sample site after putting correct information. https://microsoft.github.io/PowerBI-JavaScript/demo/v2-demo/index.html But when we open the website on mobile It is still showing the desktop version of the report. File version used of powerbi.js file is 'powerbi-client v2.5.1'. The HTML and javascript used is provided below We are also appending '&isMobile=true' with embed report url. Are we missing any reference to show the mobile version. <div id="reportContainer" style="width: 100%; height: 610px" aria-atomic="True" aria-multiline="True" aria-multiselectable="True" aria-orientation="vertical"> </div> <script src="~/Scripts/powerbi.js"></script> <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> <script> $(document).ready(function() { var txtAccessToken = "@Model.EmbedToken.Token"; var txtEmbedUrl = "@Html.Raw(Model.EmbedUrl)"; var txtEmbedReportId = "@Model.Id"; var tokenType = $('input:radio[name=tokenType]:checked').val(); var models = window['powerbi-client'].models; var permissions = models.Permissions.All; var config = { type: 'report', tokenType: tokenType == '0' ? models.TokenType.Aad : models.TokenType.Embed, accessToken: txtAccessToken, embedUrl: txtEmbedUrl, id: txtEmbedReportId, permissions: permissions, settings: { layoutType: models.LayoutType.MobilePortrait } }; // Get a reference to the embedded report HTML element var embedContainer = $('#reportContainer')[0]; var report = powerbi.embed(embedContainer, config); report.off("loaded"); // Report.on will add an event handler which prints to Log window. report.on("loaded", function() { Log.logText("Loaded"); }); report.on("error", function(event) { Log.log(event.detail); report.off("error"); }); report.off("saved"); report.on("saved", function(event) { Log.log(event.detail); if (event.detail.saveAs) { Log.logText('In order to interact with the new report, create a new token and load the new report'); } }); }); </script>Solved20KViews0likes8CommentsPaginated Report - E-mail subscription excel - formatting issue on mobile
Dear fellow Power BI enthusiasts. I have created a Paginated Report that i want to send as a E-mail subscription with an Excel file attatched. It works perfectly on the PC when opening the excel file in the e-mail. When i open the excel file on the phone the formatting on the numbers is odd. From mobile: correct formatting (manual excel file): Has anyone had the same issue or has a solution to the issue ? Thanks. Best regards Mathias496Views0likes1CommentBUG: HTML code " " is displaying instead of blank values when n show as table on mobile app
Hi Community, Recently I found the following BUG on the mobile app. The HTML code: " " for blank/space is being displayed when the value is supposed to be "BLANK". The error happens when I use the "show as table" on pbi mobile app. On PBI desktop and service the values are showing as expected (not showing anything) but when the user opens the report using PBI mobile app and clicks on "show as table", instead of showing "" (nothing), the table is showing html code. To be clear: I'm not using any HTML as any source of data. The measures are simple ifs like: current year = VAR cumulative = CALCULATE( [measure] ,KEEPFILTERS( YEAR(fact_table[date]) = YEAR(TODAY())) ) RETURN IF( VALUES(Date_Dim[Day]) > [Max Current day] , BLANK() , cumulative ) Thank you in advance!3.3KViews0likes3CommentsFilter pane on iPhone doesn't show Apply Filter button
We have a report that is set to show the Date filter for the report in the Filter pane on Desktop. On Mobile, the Filters pane correctly shows the date filter, but the Apply Filter button is missing when doing this from an iPhone (it works properly on Android):1.1KViews0likes1Comment