help!
5 TopicsBing Maps Deprecation and Power BI Report Server Impact
Hi every one, Hi understand from the Power BI October 2025 Feature Summary blog post that Power BI is transitioning from Bing Maps to Azure Maps. The article details the migration for Power BI Desktop, Web (Edit-mode), and Power BI Report Builder (PBIRB) for paginated reports. While the post outlines a two-phase migration for paginated reports from Bing Maps to Azure Maps in PBIRB and eventually in the service, it is not explicitly clear what the implications are for Power BI Report Server environments. Can the Power BI team confirm if the transition from Bing Maps to Azure Maps for Power BI Desktop and paginated reports will also affect Power BI Report Server? We’d appreciate details on the timeline and any necessary steps for existing reports using Bing Maps visuals. Best regards! Marco3.8KViews0likes4CommentsDate Calculation is blank if one of the dates blank
I am getting a "Expressions that yeild variant data-type cannot be used to define calculated columns" error" if I change the 0 to "". I know this is simple but need help. I have the below calculated column. Days btw dates = if(ISBLANK(DATE1,0, if(ISBLANK(DATE2),0,NETWORKDAYS(DATE1,DATE2))) Right now it is displaying 0 if the DATE1 or DATE2 is blank. I want it to display "" or nothing if one or both of the dates are missing. Can someone help me tweak this calculated column to do so if one of the dates or both are blank?Solved1.2KViews0likes3CommentsData refresh failed. Please try again later or contact your administrator.
We have built a new Power BI Report Server. The Power Bi Report Server is installed in the database and the server specifications are as follows. [Previous System] - Operating system: Window Server 2016 (on-premise) - DataBase : MSSQL2016 - Power BI Report Server Version : 15.0.1106.169 (2019, Jan) [New System] - Operating system: Window Server 2019 (cloud) - DataBase : MSSQL2016 - Power BI Report Server Version : 15.0.1112.79 (2023, May) The following is the order of the work done. 1. Back up the Report Server DataBase of the previous system to the .bak file and back up the Key of the Report Server 2. After installing Window Server 2019 on the new system, install MSSQL2016 and restore Report Server DataBase from .bak file 3. Install the Power BI Report Server (15.0.1112.79 (2023, May) on the new system and restore the key 4. Add MASTER, MSDB role, and permissions to the new system (RSExecRole) 5. Check the normal operation of all functions in the PowerBI Web Portal Page. 6. Check the normal operation of adding/deleting folders, permissions, adding/deleting users among PowerBI APIs 7. Check file upload operation failure during PowerBI API 8. PowerBI Desktop editing failure check The following are some of the relevant error messages. 1. [SubscriptionHistory] Log - Message : Data refresh failed. Please try again later or contact your administrator. - Details : {"SessionID":"xxx","Errors":[{"ErrorCode":0,"Message":"Model can not be refreshed with no connection string",~~"}]} 2. PowerBi Error Log - |WARN|12|Received a request with an unmatched or no authentication scheme. 401 - |ERROR|35|Error Processing Data Model Refresh: SessionId: xxx, Status: Error Model can not be refreshed because not all connection string is valid ~~ Comparing all the config files of the old and new systems (\PBIRS\ASEEngine, \PBIRS\Office, \PBIRS\Portal, \PBIRS\PowerBI, \PBIRS\ReportServer) did not find any differences other than the version, and the service execution accounts are all the same. What did we miss? We desperately need the help of our masters! T_T1KViews0likes0CommentsDynamic Data Segmentation
First off, I've reviewed the various posts by RADACAD, Enterprise DNA and SQLBI on this topic. I have measures based on RADACAD & SQLBI all working, but its not giving me what I need/want. I don't know why I can't wrap my head around this. All I need is basic catorgization of my data. All of the examples are based upon financial or performance analysis. I just need to be able to filter a list to say 'here are all the rows that meet the criteria of X segement'. Specifically I have data that reprsents how often PDFs are generated from various Report Tempalates; frequency of creation. I have measure [Count Runs] that calculates how often each report has been run over time. I just want to dynamically drop each report (row) into a bucket to segement the data based on how often each report was run. Can anyone point me to existing documention that may aid me? If not I can post a sample data model, etc. but was hoping to avoid that. #FrustratingFriday1.8KViews0likes5CommentsHelp with DAX on running total
Hi So i got two measures that show the actual count per product and another that show the cumulative count per product: What i need is a DAX formula that shows the Inventory RT data for all lines that are representing the product cumulative subtotals and the RevenueDataAllLines data for lines named Inventory in and Units sold. The formula for RevenueDataAllLines is =sum(RevenueInputsDatabase[Value]) The formula for Inventory RT is =VAR LastVisibleDate = MAX ( BudgetCalendar[Date] ) VAR FirstVisibleDate = MIN ( BudgetCalendar[Date] ) VAR LastDateWithSales = CALCULATE ( MAX ( RevenueInputsDatabase[Transaction Date] ), ALL(RevenueInputsDatabase) ) VAR Result = IF ( FirstVisibleDate <= LastDateWithSales, CALCULATE ( [RevenueDataAllLines], BudgetCalendar[Date]<= LastVisibleDate ) ) RETURN Result Below is the result that should be displayed: Thanks in advance!Solved734Views0likes3Comments